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

Side by Side Diff: chrome/browser/extensions/api/tabs/ash_panel_contents.h

Issue 166573005: Rename apps::ShellWindow to apps::AppWindow (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, nits (rename) Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "apps/shell_window.h" 10 #include "apps/app_window.h"
11 #include "base/basictypes.h" 11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/extensions/extension_function_dispatcher.h" 13 #include "chrome/browser/extensions/extension_function_dispatcher.h"
14 #include "chrome/browser/ui/ash/launcher/launcher_favicon_loader.h" 14 #include "chrome/browser/ui/ash/launcher/launcher_favicon_loader.h"
15 #include "content/public/browser/web_contents_observer.h" 15 #include "content/public/browser/web_contents_observer.h"
16 16
17 class AshPanelWindowController; 17 class AshPanelWindowController;
18 class GURL; 18 class GURL;
19 19
20 namespace content { 20 namespace content {
21 class RenderViewHost; 21 class RenderViewHost;
22 } 22 }
23 23
24 namespace extensions { 24 namespace extensions {
25 struct DraggableRegion; 25 struct DraggableRegion;
26 } 26 }
27 27
28 // apps::ShellWindowContents class specific to panel windows created by v1 28 // apps::AppWindowContents class specific to panel windows created by v1
29 // extenstions. This class maintains a WebContents instance and observes it for 29 // extenstions. This class maintains a WebContents instance and observes it for
30 // the purpose of passing messages to the extensions system. It also creates 30 // the purpose of passing messages to the extensions system. It also creates
31 // an extensions::WindowController instance for interfacing with the v1 31 // an extensions::WindowController instance for interfacing with the v1
32 // extensions API. 32 // extensions API.
33 class AshPanelContents : public apps::ShellWindowContents, 33 class AshPanelContents : public apps::AppWindowContents,
34 public content::WebContentsObserver, 34 public content::WebContentsObserver,
35 public LauncherFaviconLoader::Delegate, 35 public LauncherFaviconLoader::Delegate,
36 public ExtensionFunctionDispatcher::Delegate { 36 public ExtensionFunctionDispatcher::Delegate {
37 public: 37 public:
38 explicit AshPanelContents(apps::ShellWindow* host); 38 explicit AshPanelContents(apps::AppWindow* host);
39 virtual ~AshPanelContents(); 39 virtual ~AshPanelContents();
40 40
41 // apps::ShellWindowContents 41 // apps::AppWindowContents
42 virtual void Initialize(content::BrowserContext* context, 42 virtual void Initialize(content::BrowserContext* context,
43 const GURL& url) OVERRIDE; 43 const GURL& url) OVERRIDE;
44 virtual void LoadContents(int32 creator_process_id) OVERRIDE; 44 virtual void LoadContents(int32 creator_process_id) OVERRIDE;
45 virtual void NativeWindowChanged(apps::NativeAppWindow* native_app_window) 45 virtual void NativeWindowChanged(apps::NativeAppWindow* native_app_window)
46 OVERRIDE; 46 OVERRIDE;
47 virtual void NativeWindowClosed() OVERRIDE; 47 virtual void NativeWindowClosed() OVERRIDE;
48 virtual content::WebContents* GetWebContents() const OVERRIDE; 48 virtual content::WebContents* GetWebContents() const OVERRIDE;
49 49
50 // LauncherFaviconLoader::Delegate overrides: 50 // LauncherFaviconLoader::Delegate overrides:
51 virtual void FaviconUpdated() OVERRIDE; 51 virtual void FaviconUpdated() OVERRIDE;
52 52
53 // ExtensionFunctionDispatcher::Delegate 53 // ExtensionFunctionDispatcher::Delegate
54 virtual extensions::WindowController* GetExtensionWindowController() const 54 virtual extensions::WindowController* GetExtensionWindowController() const
55 OVERRIDE; 55 OVERRIDE;
56 virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE; 56 virtual content::WebContents* GetAssociatedWebContents() const OVERRIDE;
57 57
58 LauncherFaviconLoader* launcher_favicon_loader_for_test() { 58 LauncherFaviconLoader* launcher_favicon_loader_for_test() {
59 return launcher_favicon_loader_.get(); 59 return launcher_favicon_loader_.get();
60 } 60 }
61 61
62 private: 62 private:
63 // content::WebContentsObserver 63 // content::WebContentsObserver
64 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 64 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
65 65
66 void OnRequest(const ExtensionHostMsg_Request_Params& params); 66 void OnRequest(const ExtensionHostMsg_Request_Params& params);
67 67
68 apps::ShellWindow* host_; 68 apps::AppWindow* host_;
69 GURL url_; 69 GURL url_;
70 scoped_ptr<content::WebContents> web_contents_; 70 scoped_ptr<content::WebContents> web_contents_;
71 scoped_ptr<ExtensionFunctionDispatcher> extension_function_dispatcher_; 71 scoped_ptr<ExtensionFunctionDispatcher> extension_function_dispatcher_;
72 scoped_ptr<AshPanelWindowController> window_controller_; 72 scoped_ptr<AshPanelWindowController> window_controller_;
73 scoped_ptr<LauncherFaviconLoader> launcher_favicon_loader_; 73 scoped_ptr<LauncherFaviconLoader> launcher_favicon_loader_;
74 74
75 DISALLOW_COPY_AND_ASSIGN(AshPanelContents); 75 DISALLOW_COPY_AND_ASSIGN(AshPanelContents);
76 }; 76 };
77 77
78 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_ 78 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_ASH_PANEL_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698