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

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

Issue 1059033002: Implement networkingPrivate.getDeviceStates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android compile errors 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 4
5 #include "components/onc/onc_constants.h" 5 #include "components/onc/onc_constants.h"
6 6
7 // Constants for ONC properties. 7 // Constants for ONC properties.
8 namespace onc { 8 namespace onc {
9 9
10 const char kAugmentationActiveSetting[] = "Active"; 10 const char kAugmentationActiveSetting[] = "Active";
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 namespace substitutes { 407 namespace substitutes {
408 const char kLoginIDField[] = "${LOGIN_ID}"; 408 const char kLoginIDField[] = "${LOGIN_ID}";
409 const char kEmailField[] = "${LOGIN_EMAIL}"; 409 const char kEmailField[] = "${LOGIN_EMAIL}";
410 } // namespace substitutes 410 } // namespace substitutes
411 411
412 namespace global_network_config { 412 namespace global_network_config {
413 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 413 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
414 "AllowOnlyPolicyNetworksToAutoconnect"; 414 "AllowOnlyPolicyNetworksToAutoconnect";
415 } // global_network_config 415 } // global_network_config
416 416
417 namespace device_state {
418 const char kUninitialized[] = "Uninitialized";
419 const char kDisabled[] = "Disabled";
420 const char kEnabling[] = "Enabling";
421 const char kEnabled[] = "Enabled";
422 } // device_state
423
417 } // namespace onc 424 } // namespace onc
OLDNEW
« no previous file with comments | « components/onc/onc_constants.h ('k') | extensions/browser/api/networking_private/networking_private_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698