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

Unified Diff: chrome/browser/chrome_browser_main.h

Issue 1423063004: Allow Chrome to bind an Application request from mojo_runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@callback
Patch Set: . Created 5 years, 1 month 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: chrome/browser/chrome_browser_main.h
diff --git a/chrome/browser/chrome_browser_main.h b/chrome/browser/chrome_browser_main.h
index 140a9606bc4cc776b60cfae1e6477b821be24529..80d2a7f6d3b007b5b4b1ce90365d1c35342b48e3 100644
--- a/chrome/browser/chrome_browser_main.h
+++ b/chrome/browser/chrome_browser_main.h
@@ -20,9 +20,11 @@
#include "content/public/common/main_function_params.h"
class BrowserProcessImpl;
+class ChromeApplicationDelegate;
sky 2015/11/05 19:21:28 remove this (it is only needed in mojo_runner_stat
class ChromeBrowserMainExtraParts;
class FieldTrialSynchronizer;
class MetricsService;
+class MojoRunnerState;
class PrefService;
class ProcessPowerCollector;
class Profile;
@@ -191,6 +193,10 @@ class ChromeBrowserMainParts : public content::BrowserMainParts {
// Members needed across shutdown methods.
bool restart_last_session_;
+#if defined(MOJO_RUNNER_CLIENT)
+ scoped_ptr<MojoRunnerState> mojo_runner_state_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainParts);
};

Powered by Google App Engine
This is Rietveld 408576698