Index: chromecast/shell/app/cast_main_delegate.h |
diff --git a/chromecast/shell/app/cast_main_delegate.h b/chromecast/shell/app/cast_main_delegate.h |
index a9abc90ed4a80a4bc6d7de7cf0b75dc5584a8444..8c9ed620ddd78fdfc847dff7a5ffbf8932ab06a5 100644 |
--- a/chromecast/shell/app/cast_main_delegate.h |
+++ b/chromecast/shell/app/cast_main_delegate.h |
@@ -11,6 +11,9 @@ |
#include "content/public/app/content_main_delegate.h" |
namespace chromecast { |
+ |
+class CastResourceDelegate; |
+ |
namespace shell { |
class CastContentBrowserClient; |
@@ -30,10 +33,11 @@ class CastMainDelegate : public content::ContentMainDelegate { |
CreateContentRendererClient() OVERRIDE; |
private: |
- static void InitializeResourceBundle(); |
+ void InitializeResourceBundle(); |
scoped_ptr<CastContentBrowserClient> browser_client_; |
scoped_ptr<CastContentRendererClient> renderer_client_; |
+ scoped_ptr<CastResourceDelegate> resource_delegate_; |
CastContentClient content_client_; |
DISALLOW_COPY_AND_ASSIGN(CastMainDelegate); |