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

Unified Diff: content/browser/browser_main_loop.h

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more cleanup Created 5 years, 2 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/browser/browser_main_loop.h
diff --git a/content/browser/browser_main_loop.h b/content/browser/browser_main_loop.h
index 4650c27ee28543ceb8ef4ac222e96ee6076c0c82..ecc418d4c84853f9d0b624d8c551294e3cb36d28 100644
--- a/content/browser/browser_main_loop.h
+++ b/content/browser/browser_main_loop.h
@@ -27,6 +27,10 @@ class TraceEventSystemStatsMonitor;
} // namespace trace_event
} // namespace base
+namespace IPC {
+class ScopedIPCSupport;
+}
+
namespace media {
class AudioManager;
class UserInputMonitor;
@@ -241,6 +245,7 @@ class CONTENT_EXPORT BrowserMainLoop {
// Members initialized in |BrowserThreadsStarted()| --------------------------
scoped_ptr<base::Thread> indexed_db_thread_;
scoped_ptr<MojoShellContext> mojo_shell_context_;
+ scoped_ptr<IPC::ScopedIPCSupport> mojo_ipc_support_;
// |user_input_monitor_| has to outlive |audio_manager_|, so declared first.
scoped_ptr<media::UserInputMonitor> user_input_monitor_;

Powered by Google App Engine
This is Rietveld 408576698