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

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 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 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 namespace substitutes { 393 namespace substitutes {
394 const char kLoginIDField[] = "${LOGIN_ID}"; 394 const char kLoginIDField[] = "${LOGIN_ID}";
395 const char kEmailField[] = "${LOGIN_EMAIL}"; 395 const char kEmailField[] = "${LOGIN_EMAIL}";
396 } // namespace substitutes 396 } // namespace substitutes
397 397
398 namespace global_network_config { 398 namespace global_network_config {
399 const char kAllowOnlyPolicyNetworksToAutoconnect[] = 399 const char kAllowOnlyPolicyNetworksToAutoconnect[] =
400 "AllowOnlyPolicyNetworksToAutoconnect"; 400 "AllowOnlyPolicyNetworksToAutoconnect";
401 } // global_network_config 401 } // global_network_config
402 402
403 namespace device_state {
404 const char kUninitialized[] = "Uninitialized";
405 const char kDisabled[] = "Disabled";
406 const char kEnabling[] = "Enabling";
407 const char kEnabled[] = "Enabled";
408 } // device_state
409
403 } // namespace onc 410 } // namespace onc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698