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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/onc/onc_constants.cc
diff --git a/components/onc/onc_constants.cc b/components/onc/onc_constants.cc
index 1f6b43ad5fcf58439898cc706e38986be5c27be3..27a6f6bbfe179f8899ca313c31690a1739ef2c0a 100644
--- a/components/onc/onc_constants.cc
+++ b/components/onc/onc_constants.cc
@@ -400,4 +400,11 @@ const char kAllowOnlyPolicyNetworksToAutoconnect[] =
"AllowOnlyPolicyNetworksToAutoconnect";
} // global_network_config
+namespace device_state {
+const char kUninitialized[] = "Uninitialized";
+const char kDisabled[] = "Disabled";
+const char kEnabling[] = "Enabling";
+const char kEnabled[] = "Enabled";
+} // device_state
+
} // namespace onc

Powered by Google App Engine
This is Rietveld 408576698