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

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

Issue 552113002: Add ONC 'Source' configuration property (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_279351_internet_options_9a
Patch Set: Rebase Created 6 years, 3 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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 ONC_EXPORT extern const char kGUID[]; 63 ONC_EXPORT extern const char kGUID[];
64 ONC_EXPORT extern const char kIPConfigs[]; 64 ONC_EXPORT extern const char kIPConfigs[];
65 ONC_EXPORT extern const char kSavedIPConfig[]; 65 ONC_EXPORT extern const char kSavedIPConfig[];
66 ONC_EXPORT extern const char kStaticIPConfig[]; 66 ONC_EXPORT extern const char kStaticIPConfig[];
67 ONC_EXPORT extern const char kMacAddress[]; 67 ONC_EXPORT extern const char kMacAddress[];
68 ONC_EXPORT extern const char kName[]; 68 ONC_EXPORT extern const char kName[];
69 ONC_EXPORT extern const char kNameServers[]; 69 ONC_EXPORT extern const char kNameServers[];
70 ONC_EXPORT extern const char kPriority[]; 70 ONC_EXPORT extern const char kPriority[];
71 ONC_EXPORT extern const char kProxySettings[]; 71 ONC_EXPORT extern const char kProxySettings[];
72 ONC_EXPORT extern const char kSearchDomains[]; 72 ONC_EXPORT extern const char kSearchDomains[];
73 ONC_EXPORT extern const char kSource[];
74 ONC_EXPORT extern const char kSourceDevice[];
75 ONC_EXPORT extern const char kSourceNone[];
76 ONC_EXPORT extern const char kSourceUser[];
73 ONC_EXPORT extern const char kConnectionState[]; 77 ONC_EXPORT extern const char kConnectionState[];
74 ONC_EXPORT extern const char kRestrictedConnectivity[]; 78 ONC_EXPORT extern const char kRestrictedConnectivity[];
75 ONC_EXPORT extern const char kConnectable[]; 79 ONC_EXPORT extern const char kConnectable[];
76 ONC_EXPORT extern const char kErrorState[]; 80 ONC_EXPORT extern const char kErrorState[];
77 ONC_EXPORT extern const char kType[]; 81 ONC_EXPORT extern const char kType[];
78 ONC_EXPORT extern const char kVPN[]; 82 ONC_EXPORT extern const char kVPN[];
79 ONC_EXPORT extern const char kWiFi[]; 83 ONC_EXPORT extern const char kWiFi[];
80 84
81 ONC_EXPORT extern std::string CellularProperty(const std::string& property); 85 ONC_EXPORT extern std::string CellularProperty(const std::string& property);
82 ONC_EXPORT extern std::string VpnProperty(const std::string& property); 86 ONC_EXPORT extern std::string VpnProperty(const std::string& property);
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 ONC_EXPORT extern const char kWPAD[]; 374 ONC_EXPORT extern const char kWPAD[];
371 } // namespace proxy 375 } // namespace proxy
372 376
373 namespace global_network_config { 377 namespace global_network_config {
374 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 378 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
375 } // global_network_config 379 } // global_network_config
376 380
377 } // namespace onc 381 } // namespace onc
378 382
379 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 383 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698