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

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

Issue 708563005: Use setProperties for IP Config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_430113_internet_options_1
Patch Set: IPConfigType=Static applies to NameServer only config Created 6 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 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 ONC_EXPORT extern const char kEthernet[]; 62 ONC_EXPORT extern const char kEthernet[];
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 kIPConfigType[]; 65 ONC_EXPORT extern const char kIPConfigType[];
66 ONC_EXPORT extern const char kIPConfigTypeDHCP[]; 66 ONC_EXPORT extern const char kIPConfigTypeDHCP[];
67 ONC_EXPORT extern const char kIPConfigTypeStatic[]; 67 ONC_EXPORT extern const char kIPConfigTypeStatic[];
68 ONC_EXPORT extern const char kSavedIPConfig[]; 68 ONC_EXPORT extern const char kSavedIPConfig[];
69 ONC_EXPORT extern const char kStaticIPConfig[]; 69 ONC_EXPORT extern const char kStaticIPConfig[];
70 ONC_EXPORT extern const char kMacAddress[]; 70 ONC_EXPORT extern const char kMacAddress[];
71 ONC_EXPORT extern const char kName[]; 71 ONC_EXPORT extern const char kName[];
72 ONC_EXPORT extern const char kNameServers[];
73 ONC_EXPORT extern const char kPriority[]; 72 ONC_EXPORT extern const char kPriority[];
74 ONC_EXPORT extern const char kProxySettings[]; 73 ONC_EXPORT extern const char kProxySettings[];
75 ONC_EXPORT extern const char kSearchDomains[]; 74 ONC_EXPORT extern const char kSearchDomains[];
76 ONC_EXPORT extern const char kSource[]; 75 ONC_EXPORT extern const char kSource[];
77 ONC_EXPORT extern const char kSourceDevice[]; 76 ONC_EXPORT extern const char kSourceDevice[];
78 ONC_EXPORT extern const char kSourceDevicePolicy[]; 77 ONC_EXPORT extern const char kSourceDevicePolicy[];
79 ONC_EXPORT extern const char kSourceNone[]; 78 ONC_EXPORT extern const char kSourceNone[];
80 ONC_EXPORT extern const char kSourceUser[]; 79 ONC_EXPORT extern const char kSourceUser[];
81 ONC_EXPORT extern const char kSourceUserPolicy[]; 80 ONC_EXPORT extern const char kSourceUserPolicy[];
82 ONC_EXPORT extern const char kConnectionState[]; 81 ONC_EXPORT extern const char kConnectionState[];
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 ONC_EXPORT extern const char kWPAD[]; 396 ONC_EXPORT extern const char kWPAD[];
398 } // namespace proxy 397 } // namespace proxy
399 398
400 namespace global_network_config { 399 namespace global_network_config {
401 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 400 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
402 } // global_network_config 401 } // global_network_config
403 402
404 } // namespace onc 403 } // namespace onc
405 404
406 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 405 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698