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) |