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

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

Issue 280023003: Implement networkingPrivate.getNetworks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests (sort ServiceCompleteList) 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 ONC_EXPORT extern std::string WifiProperty(const std::string& property); 77 ONC_EXPORT extern std::string WifiProperty(const std::string& property);
78 78
79 } // namespace network_config 79 } // namespace network_config
80 80
81 namespace network_type { 81 namespace network_type {
82 ONC_EXPORT extern const char kAllTypes[]; 82 ONC_EXPORT extern const char kAllTypes[];
83 ONC_EXPORT extern const char kCellular[]; 83 ONC_EXPORT extern const char kCellular[];
84 ONC_EXPORT extern const char kEthernet[]; 84 ONC_EXPORT extern const char kEthernet[];
85 ONC_EXPORT extern const char kVPN[]; 85 ONC_EXPORT extern const char kVPN[];
86 ONC_EXPORT extern const char kWiFi[]; 86 ONC_EXPORT extern const char kWiFi[];
87 ONC_EXPORT extern const char kWimax[];
pneubeck (no reviews) 2014/05/15 18:28:38 please group these two with kAllTypes and comment
stevenjb 2014/05/15 20:12:41 Wimax should be part of the spec, shouldn't it? At
pneubeck (no reviews) 2014/05/16 13:18:55 Not yet, but this is fine.
88 ONC_EXPORT extern const char kWireless[];
87 } // namespace network_type 89 } // namespace network_type
88 90
89 namespace cellular { 91 namespace cellular {
90 ONC_EXPORT extern const char kActivateOverNonCellularNetwork[]; 92 ONC_EXPORT extern const char kActivateOverNonCellularNetwork[];
91 ONC_EXPORT extern const char kActivationState[]; 93 ONC_EXPORT extern const char kActivationState[];
92 ONC_EXPORT extern const char kAllowRoaming[]; 94 ONC_EXPORT extern const char kAllowRoaming[];
93 ONC_EXPORT extern const char kAPN[]; 95 ONC_EXPORT extern const char kAPN[];
94 ONC_EXPORT extern const char kAPNList[]; 96 ONC_EXPORT extern const char kAPNList[];
95 ONC_EXPORT extern const char kCarrier[]; 97 ONC_EXPORT extern const char kCarrier[];
96 ONC_EXPORT extern const char kESN[]; 98 ONC_EXPORT extern const char kESN[];
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 ONC_EXPORT extern const char kWPAD[]; 339 ONC_EXPORT extern const char kWPAD[];
338 } // namespace proxy 340 } // namespace proxy
339 341
340 namespace global_network_config { 342 namespace global_network_config {
341 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 343 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
342 } // global_network_config 344 } // global_network_config
343 345
344 } // namespace onc 346 } // namespace onc
345 347
346 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 348 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698