summaryrefslogtreecommitdiffstats
path: root/mojo/runner/switches.cc
diff options
context:
space:
mode:
authorqyearsley <qyearsley@chromium.org>2015-07-24 16:21:39 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-24 23:22:04 +0000
commit40f6ff642a53681e2367c2d7dbb2fc5af1701c97 (patch)
treedfc4316e6fb97618f610a50fef412c074c82dd47 /mojo/runner/switches.cc
parent137dc9586ca8ec1aa2c0062794ffa96f43cae004 (diff)
downloadchromium_src-40f6ff642a53681e2367c2d7dbb2fc5af1701c97.zip
chromium_src-40f6ff642a53681e2367c2d7dbb2fc5af1701c97.tar.gz
chromium_src-40f6ff642a53681e2367c2d7dbb2fc5af1701c97.tar.bz2
Proof-reading comments in mojo/runner.
Review URL: https://codereview.chromium.org/1253823002 Cr-Commit-Position: refs/heads/master@{#340373}
Diffstat (limited to 'mojo/runner/switches.cc')
-rw-r--r--mojo/runner/switches.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/mojo/runner/switches.cc b/mojo/runner/switches.cc
index f4290f6..e6d0b4b 100644
--- a/mojo/runner/switches.cc
+++ b/mojo/runner/switches.cc
@@ -8,8 +8,8 @@
namespace switches {
-// Used just for debugging to make it easier to attach debuggers. The actual app
-// path that is used is sent over IPC.
+// Used just for debugging, to make it easier to attach debuggers. The actual
+// app path that is used is sent over IPC.
const char kApp[] = "app";
// Used internally by the main process to indicate that a new process should be
@@ -20,12 +20,12 @@ const char kChildProcess[] = "child-process";
// text/html,mojo:html_viewer,application/bravo,https://abarth.com/bravo
const char kContentHandlers[] = "content-handlers";
-// Force dynamically loaded apps / services to be loaded irrespective of cache
+// Force dynamically loaded apps or services to be loaded irrespective of cache
// instructions.
const char kDisableCache[] = "disable-cache";
// In multiprocess mode, force these apps to be loaded in the main process.
-// Comma-separate list of URLs. Example:
+// This is a comma-separated list of URLs. Example:
// --force-in-process=mojo:native_viewport_service,mojo:network_service
const char kForceInProcess[] = "force-in-process";
@@ -44,9 +44,9 @@ const char kOrigin[] = "origin";
// seconds or when the shell exits.
const char kTraceStartup[] = "trace-startup";
-// Specifies a set of mappings to apply when resolving urls. The value is a set
-// of ',' separated mappings, where each mapping consists of a pair of urls
-// giving the to/from url to map. For example, 'a=b,c=d' contains two mappings,
+// Specifies a set of mappings to apply when resolving URLs. The value is a set
+// of comma-separated mappings, where each mapping consists of a pair of URLs
+// giving the to/from URLs to map. For example, 'a=b,c=d' contains two mappings,
// the first maps 'a' to 'b' and the second 'c' to 'd'.
const char kURLMappings[] = "url-mappings";