Chromium Code Reviews| Index: apps/app_window_contents.h |
| diff --git a/apps/app_window_contents.h b/apps/app_window_contents.h |
| index 80b95de3d6793ed4f67686184e9d431dcddda17a..17426e579232a244b9390e8c1ed767320ab96fc9 100644 |
| --- a/apps/app_window_contents.h |
| +++ b/apps/app_window_contents.h |
| @@ -17,6 +17,7 @@ |
| class GURL; |
| namespace content { |
| +class BrowserContext; |
|
James Cook
2014/02/12 00:46:41
totally optional nit: I usually don't forward-decl
Ken Rockot(use gerrit already)
2014/02/12 01:05:46
I can support that. Done.
|
| class RenderViewHost; |
| } |
| @@ -38,7 +39,8 @@ class AppWindowContents : public ShellWindowContents, |
| virtual ~AppWindowContents(); |
| // ShellWindowContents |
| - virtual void Initialize(Profile* profile, const GURL& url) OVERRIDE; |
| + virtual void Initialize(content::BrowserContext* context, |
| + const GURL& url) OVERRIDE; |
| virtual void LoadContents(int32 creator_process_id) OVERRIDE; |
| virtual void NativeWindowChanged(NativeAppWindow* native_app_window) OVERRIDE; |
| virtual void NativeWindowClosed() OVERRIDE; |