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

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

Issue 1059033002: Implement networkingPrivate.getDeviceStates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test Created 5 years, 8 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 ONC_EXPORT extern const char kPort[]; 410 ONC_EXPORT extern const char kPort[];
411 ONC_EXPORT extern const char kSocks[]; 411 ONC_EXPORT extern const char kSocks[];
412 ONC_EXPORT extern const char kType[]; 412 ONC_EXPORT extern const char kType[];
413 ONC_EXPORT extern const char kWPAD[]; 413 ONC_EXPORT extern const char kWPAD[];
414 } // namespace proxy 414 } // namespace proxy
415 415
416 namespace global_network_config { 416 namespace global_network_config {
417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 417 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
418 } // global_network_config 418 } // global_network_config
419 419
420 namespace device_state {
421 ONC_EXPORT extern const char kUninitialized[];
422 ONC_EXPORT extern const char kDisabled[];
423 ONC_EXPORT extern const char kEnabling[];
424 ONC_EXPORT extern const char kEnabled[];
425 } // device_state
426
420 } // namespace onc 427 } // namespace onc
421 428
422 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 429 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698