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

Unified Diff: content/shell/app/shell_main_delegate.h

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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/shell/app/shell_main_delegate.h
diff --git a/content/shell/app/shell_main_delegate.h b/content/shell/app/shell_main_delegate.h
index 930009cd45e0155d38904bfcc9e05ff5359797fa..f8439bc5f111f8b7a2e7a83a5afc7772b4fac37c 100644
--- a/content/shell/app/shell_main_delegate.h
+++ b/content/shell/app/shell_main_delegate.h
@@ -13,6 +13,7 @@
namespace content {
class ShellContentBrowserClient;
class ShellContentRendererClient;
+class ShellContentUtilityClient;
#if defined(OS_ANDROID)
class BrowserMainRunner;
@@ -33,12 +34,14 @@ class ShellMainDelegate : public ContentMainDelegate {
#endif
ContentBrowserClient* CreateContentBrowserClient() override;
ContentRendererClient* CreateContentRendererClient() override;
+ ContentUtilityClient* CreateContentUtilityClient() override;
static void InitializeResourceBundle();
private:
scoped_ptr<ShellContentBrowserClient> browser_client_;
scoped_ptr<ShellContentRendererClient> renderer_client_;
+ scoped_ptr<ShellContentUtilityClient> utility_client_;
ShellContentClient content_client_;
#if defined(OS_ANDROID)

Powered by Google App Engine
This is Rietveld 408576698