summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authormnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-29 23:19:23 +0000
committermnissler@chromium.org <mnissler@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-29 23:19:23 +0000
commit9948a54bce6a9d090fa80d06e29732e3972fc5bc (patch)
tree4659f9681654dcf021bfa41156adff5aa41583ca /chrome/common
parent3cc47e816234d732f9dca9f35f4071ccf17cccf5 (diff)
downloadchromium_src-9948a54bce6a9d090fa80d06e29732e3972fc5bc.zip
chromium_src-9948a54bce6a9d090fa80d06e29732e3972fc5bc.tar.gz
chromium_src-9948a54bce6a9d090fa80d06e29732e3972fc5bc.tar.bz2
Put ONC policy behind a flag.
BUG=chromium-os:19411 TEST=compiles and passes tests. Review URL: http://codereview.chromium.org/8729033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112063 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc3
-rw-r--r--chrome/common/chrome_switches.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 9fc7528..c56cfe2 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -1135,6 +1135,9 @@ const char kEnableLoginImages[] = "enable-login-images";
// Enables mobile setup in a dialog.
const char kEnableMobileSetupDialog[] = "enable-mobile-dialog";
+// Enables support for policy-configured networks.
+const char kEnableONCPolicy[] = "enable-onc-policy";
+
// Rotates the screen in response to orientation changed events from dbus. Will
// be reused for more generic sensors.
const char kEnableSensors[] = "enable-sensors";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index ebce583..307900f 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -311,6 +311,7 @@ extern const char kEnableDevicePolicy[];
extern const char kEnableGView[];
extern const char kEnableLoginImages[];
extern const char kEnableMobileSetupDialog[];
+extern const char kEnableONCPolicy[];
extern const char kEnableSensors[];
extern const char kEnableStaticIPConfig[];
extern const char kLoginManager[];