summaryrefslogtreecommitdiffstats
path: root/content/shell/app/shell_main_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/shell/app/shell_main_delegate.h')
-rw-r--r--content/shell/app/shell_main_delegate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/content/shell/app/shell_main_delegate.h b/content/shell/app/shell_main_delegate.h
index 930009c..f8439bc 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)