Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Side by Side Diff: chromeos/network/onc/onc_signature.h

Issue 11664005: Extending the translation from ONC to Shill. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Initial patch. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ 5 #ifndef CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_
6 #define CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ 6 #define CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/values.h" 10 #include "base/values.h"
11 #include "chromeos/chromeos_export.h" 11 #include "chromeos/chromeos_export.h"
12 12
13 namespace chromeos { 13 namespace chromeos {
14 namespace onc { 14 namespace onc {
15 15
16 struct OncValueSignature; 16 struct OncValueSignature;
17 17
18 struct OncFieldSignature { 18 struct OncFieldSignature {
19 const char* onc_field_name; 19 const char* onc_field_name;
20 const char* shill_property_name; 20 const char* shill_property_name;
21 const OncValueSignature* value_signature; 21 const OncValueSignature* value_signature;
22 }; 22 };
23 23
24 struct CHROMEOS_EXPORT OncValueSignature { 24 struct CHROMEOS_EXPORT OncValueSignature {
25 base::Value::Type onc_type; 25 base::Value::Type onc_type;
26 const OncFieldSignature* fields; 26 const OncFieldSignature* fields;
27 const OncValueSignature* onc_array_entry_signature; 27 const OncValueSignature* onc_array_entry_signature;
28 }; 28 };
29 29
30 const OncFieldSignature* GetFieldSignature(const OncValueSignature& signature, 30 CHROMEOS_EXPORT const OncFieldSignature* GetFieldSignature(
31 const std::string& onc_field_name); 31 const OncValueSignature& signature,
32 const std::string& onc_field_name);
32 33
33 CHROMEOS_EXPORT extern const OncValueSignature kRecommendedSignature; 34 CHROMEOS_EXPORT extern const OncValueSignature kRecommendedSignature;
34 CHROMEOS_EXPORT extern const OncValueSignature kEAPSignature; 35 CHROMEOS_EXPORT extern const OncValueSignature kEAPSignature;
35 CHROMEOS_EXPORT extern const OncValueSignature kIssuerSubjectPatternSignature; 36 CHROMEOS_EXPORT extern const OncValueSignature kIssuerSubjectPatternSignature;
36 CHROMEOS_EXPORT extern const OncValueSignature kCertificatePatternSignature; 37 CHROMEOS_EXPORT extern const OncValueSignature kCertificatePatternSignature;
37 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature; 38 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature;
38 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature; 39 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature;
39 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; 40 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature;
40 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; 41 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature;
41 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; 42 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature;
42 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; 43 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature;
43 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; 44 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature;
44 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; 45 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature;
45 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; 46 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature;
46 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; 47 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature;
47 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; 48 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature;
48 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; 49 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature;
49 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; 50 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature;
50 CHROMEOS_EXPORT extern const OncValueSignature 51 CHROMEOS_EXPORT extern const OncValueSignature
51 kNetworkConfigurationListSignature; 52 kNetworkConfigurationListSignature;
52 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; 53 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature;
53 54
54 } // namespace onc 55 } // namespace onc
55 } // namespace chromeos 56 } // namespace chromeos
56 57
57 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ 58 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698