summaryrefslogtreecommitdiffstats
path: root/mojo/runner/switches.h
diff options
context:
space:
mode:
authorben <ben@chromium.org>2015-04-27 14:52:57 -0700
committerCommit bot <commit-bot@chromium.org>2015-04-27 21:52:56 +0000
commitee05293936b654dfbc42889ba374bba21bd5c453 (patch)
treede694f31a0a2f21e60750a9b92902127f08293fc /mojo/runner/switches.h
parent9cfdfc07ef3042e059d5a51a91cbe4f13cfca341 (diff)
downloadchromium_src-ee05293936b654dfbc42889ba374bba21bd5c453.zip
chromium_src-ee05293936b654dfbc42889ba374bba21bd5c453.tar.gz
chromium_src-ee05293936b654dfbc42889ba374bba21bd5c453.tar.bz2
Separate mojo/shell into a runner and the application manager (shell)
R=sky@chromium.org BUG= Review URL: https://codereview.chromium.org/1091513005 Cr-Commit-Position: refs/heads/master@{#327148}
Diffstat (limited to 'mojo/runner/switches.h')
-rw-r--r--mojo/runner/switches.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/mojo/runner/switches.h b/mojo/runner/switches.h
new file mode 100644
index 0000000..fd7f065
--- /dev/null
+++ b/mojo/runner/switches.h
@@ -0,0 +1,29 @@
+// Copyright 2013 The Chromium 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 MOJO_RUNNER_SWITCHES_H_
+#define MOJO_RUNNER_SWITCHES_H_
+
+#include <set>
+#include <string>
+
+namespace switches {
+
+// All switches in alphabetical order. The switches should be documented
+// alongside the definition of their values in the .cc file.
+extern const char kApp[];
+extern const char kChildProcess[];
+extern const char kContentHandlers[];
+extern const char kDisableCache[];
+extern const char kEnableMultiprocess[];
+extern const char kForceInProcess[];
+extern const char kHelp[];
+extern const char kMapOrigin[];
+extern const char kOrigin[];
+extern const char kTraceStartup[];
+extern const char kURLMappings[];
+
+} // namespace switches
+
+#endif // MOJO_RUNNER_SWITCHES_H_