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

Side by Side Diff: components/onc/onc_constants.h

Issue 260083007: Replace chrome://network implementation with networkConfig API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_
5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "components/onc/onc_export.h" 9 #include "components/onc/onc_export.h"
10 10
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 ONC_EXPORT extern const char kCellular[]; 60 ONC_EXPORT extern const char kCellular[];
61 ONC_EXPORT extern const char kEthernet[]; 61 ONC_EXPORT extern const char kEthernet[];
62 ONC_EXPORT extern const char kGUID[]; 62 ONC_EXPORT extern const char kGUID[];
63 ONC_EXPORT extern const char kIPConfigs[]; 63 ONC_EXPORT extern const char kIPConfigs[];
64 ONC_EXPORT extern const char kName[]; 64 ONC_EXPORT extern const char kName[];
65 ONC_EXPORT extern const char kNameServers[]; 65 ONC_EXPORT extern const char kNameServers[];
66 ONC_EXPORT extern const char kProxySettings[]; 66 ONC_EXPORT extern const char kProxySettings[];
67 ONC_EXPORT extern const char kSearchDomains[]; 67 ONC_EXPORT extern const char kSearchDomains[];
68 ONC_EXPORT extern const char kServicePath[]; 68 ONC_EXPORT extern const char kServicePath[];
69 ONC_EXPORT extern const char kConnectionState[]; 69 ONC_EXPORT extern const char kConnectionState[];
70 ONC_EXPORT extern const char kErrorState[];
pneubeck (no reviews) 2014/04/30 08:44:02 missing an entry in onc_signature.cc (just search
stevenjb 2014/05/01 01:45:14 Done.
70 ONC_EXPORT extern const char kType[]; 71 ONC_EXPORT extern const char kType[];
71 ONC_EXPORT extern const char kVPN[]; 72 ONC_EXPORT extern const char kVPN[];
72 ONC_EXPORT extern const char kWiFi[]; 73 ONC_EXPORT extern const char kWiFi[];
73 74
74 ONC_EXPORT extern std::string CellularProperty(const std::string& property); 75 ONC_EXPORT extern std::string CellularProperty(const std::string& property);
75 ONC_EXPORT extern std::string VpnProperty(const std::string& property); 76 ONC_EXPORT extern std::string VpnProperty(const std::string& property);
76 ONC_EXPORT extern std::string WifiProperty(const std::string& property); 77 ONC_EXPORT extern std::string WifiProperty(const std::string& property);
77 78
78 } // namespace network_config 79 } // namespace network_config
79 80
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 ONC_EXPORT extern const char kWPAD[]; 335 ONC_EXPORT extern const char kWPAD[];
335 } // namespace proxy 336 } // namespace proxy
336 337
337 namespace global_network_config { 338 namespace global_network_config {
338 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 339 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
339 } // global_network_config 340 } // global_network_config
340 341
341 } // namespace onc 342 } // namespace onc
342 343
343 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 344 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698