Add default implementations for AppWindowRegistry::Observer notifications.
[chromium-blink-merge.git] / chromeos / network / onc / onc_normalizer.h
blob4537650d8a10e228d533ec2969c2a1c1ec0968cd
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROMEOS_NETWORK_ONC_ONC_NORMALIZER_H_
6 #define CHROMEOS_NETWORK_ONC_ONC_NORMALIZER_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "chromeos/chromeos_export.h"
10 #include "chromeos/network/onc/onc_mapper.h"
12 namespace chromeos {
13 namespace onc {
15 struct OncValueSignature;
17 class CHROMEOS_EXPORT Normalizer : public Mapper {
18 public:
19 explicit Normalizer(bool remove_recommended_fields);
20 virtual ~Normalizer();
22 // Removes all fields that are ignored/irrelevant because of the value of
23 // other fields. E.g. the "WiFi" field is irrelevant if the configurations
24 // type is "Ethernet". If |remove_recommended_fields| is true, kRecommended
25 // arrays are removed (the array itself and not the field names listed
26 // there). |object_signature| must point to one of the signatures in
27 // |onc_signature.h|.
28 scoped_ptr<base::DictionaryValue> NormalizeObject(
29 const OncValueSignature* object_signature,
30 const base::DictionaryValue& onc_object);
32 private:
33 // Dispatch to the right normalization function according to |signature|.
34 virtual scoped_ptr<base::DictionaryValue> MapObject(
35 const OncValueSignature& signature,
36 const base::DictionaryValue& onc_object,
37 bool* error) OVERRIDE;
39 void NormalizeCertificate(base::DictionaryValue* cert);
40 void NormalizeEAP(base::DictionaryValue* eap);
41 void NormalizeEthernet(base::DictionaryValue* ethernet);
42 void NormalizeIPsec(base::DictionaryValue* ipsec);
43 void NormalizeNetworkConfiguration(base::DictionaryValue* network);
44 void NormalizeOpenVPN(base::DictionaryValue* openvpn);
45 void NormalizeProxySettings(base::DictionaryValue* proxy);
46 void NormalizeVPN(base::DictionaryValue* vpn);
47 void NormalizeWiFi(base::DictionaryValue* wifi);
49 const bool remove_recommended_fields_;
51 DISALLOW_COPY_AND_ASSIGN(Normalizer);
54 } // namespace onc
55 } // namespace chromeos
57 #endif // CHROMEOS_NETWORK_ONC_ONC_NORMALIZER_H_