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

Unified Diff: content/public/common/content_switches.cc

Issue 1685183004: Bootstrap Mojo IPC independent of Chrome IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: and fix posix Created 4 years, 10 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: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index b4d07233e8ccee4b0c9d6a7896e08e37ed87c4a6..467a731f75a4f1aefca20460099ef38ccc064b8e 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -626,9 +626,20 @@ const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width";
// Renderer.Memory histogram. Used in memory tests.
const char kMemoryMetrics[] = "memory-metrics";
+// The name of the Windows pipe on which to establish a Mojo IPC channel.
+const char kMojoChannelName[] = "mojo-channel-name";
+
+// A secret that must be sent over the Mojo IPC channel by a client before the
+// browser trusts its connection. Only used on Windows.
+const char kMojoChannelSecret[] = "mojo-channel-secret";
+
// Use a Mojo-based LocalStorage implementation.
const char kMojoLocalStorage[] = "mojo-local-storage";
+// A random token a child process can exchange for a primordial message pipe
+// to the browser.
+const char kMojoPrimordialPipeToken[] = "mojo-primordial-pipe-token";
+
// Mutes audio sent to the audio device so it is not audible during
// automated testing.
const char kMuteAudio[] = "mute-audio";

Powered by Google App Engine
This is Rietveld 408576698