aboutsummaryrefslogtreecommitdiff
path: root/switches
diff options
context:
space:
mode:
authorJulian Pastarmov <pastarmovj@chromium.org>2013-04-09 17:04:26 +0200
committerChromeBot <chrome-bot@google.com>2013-04-10 02:14:17 -0700
commit330a47fba93b9acef48503646413554cd5053b7a (patch)
treea0ac7243cf2def539dccf277c330262fbebffbcf /switches
parent705ea59383ffed988873427b89dd6ef87b982fdb (diff)
downloadsystem_api-330a47fba93b9acef48503646413554cd5053b7a.tar.gz
Add shared header for common switches used by Chrome and ChromeOS modules.
BUG=chromium:221354 TEST=none Change-Id: I21a0a6f3c1e1a2d818c9e6a6de240b57d860d558 Reviewed-on: https://gerrit.chromium.org/gerrit/47644 Reviewed-by: Chris Masone <cmasone@chromium.org> Commit-Queue: Julian Pastarmov <pastarmovj@chromium.org> Tested-by: Julian Pastarmov <pastarmovj@chromium.org>
Diffstat (limited to 'switches')
-rw-r--r--switches/chrome_switches.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/switches/chrome_switches.h b/switches/chrome_switches.h
new file mode 100644
index 0000000..40e7a80
--- /dev/null
+++ b/switches/chrome_switches.h
@@ -0,0 +1,21 @@
+// Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef SWITCHES_CHROME_SWITCHES_H_
+#define SWITCHES_CHROME_SWITCHES_H_
+
+// This file defines switches that are used both by Chrome and login_manager.
+
+namespace chromeos {
+namespace switches {
+
+// Sentinel switches for policy injected flags.
+const char kPolicySwitchesBegin[] = "policy-switches-begin";
+const char kPolicySwitchesEnd[] = "policy-switches-end";
+
+} // namespace switches
+} // namespace chromeos
+
+#endif // SWITCHES_CHROME_SWITCHES_H_
+