Index: chrome/browser/extensions/shell_window_registry.h |
diff --git a/chrome/browser/extensions/shell_window_registry.h b/chrome/browser/extensions/shell_window_registry.h |
index ba3dd7661f7ef14f9b6223da3031bfdf995e251e..da1072c646250d53ac5ab90024ded98cdcbe96de 100644 |
--- a/chrome/browser/extensions/shell_window_registry.h |
+++ b/chrome/browser/extensions/shell_window_registry.h |
@@ -16,7 +16,10 @@ |
#include "ui/gfx/native_widget_types.h" |
class Profile; |
+ |
+namespace apps { |
class ShellWindow; |
+} |
namespace content { |
class DevToolsAgentHost; |
@@ -37,17 +40,17 @@ class ShellWindowRegistry : public BrowserContextKeyedService { |
class Observer { |
public: |
// Called just after a shell window was added. |
- virtual void OnShellWindowAdded(ShellWindow* shell_window) = 0; |
+ virtual void OnShellWindowAdded(apps::ShellWindow* shell_window) = 0; |
// Called when the window icon changes. |
- virtual void OnShellWindowIconChanged(ShellWindow* shell_window) = 0; |
+ virtual void OnShellWindowIconChanged(apps::ShellWindow* shell_window) = 0; |
// Called just after a shell window was removed. |
- virtual void OnShellWindowRemoved(ShellWindow* shell_window) = 0; |
+ virtual void OnShellWindowRemoved(apps::ShellWindow* shell_window) = 0; |
protected: |
virtual ~Observer() {} |
}; |
- typedef std::list<ShellWindow*> ShellWindowList; |
+ typedef std::list<apps::ShellWindow*> ShellWindowList; |
typedef ShellWindowList::const_iterator const_iterator; |
typedef std::set<std::string> InspectedWindowSet; |
@@ -58,11 +61,11 @@ class ShellWindowRegistry : public BrowserContextKeyedService { |
// a convenience wrapper around ShellWindowRegistry::Factory::GetForProfile. |
static ShellWindowRegistry* Get(Profile* profile); |
- void AddShellWindow(ShellWindow* shell_window); |
- void ShellWindowIconChanged(ShellWindow* shell_window); |
+ void AddShellWindow(apps::ShellWindow* shell_window); |
+ void ShellWindowIconChanged(apps::ShellWindow* shell_window); |
// Called by |shell_window| when it is activated. |
- void ShellWindowActivated(ShellWindow* shell_window); |
- void RemoveShellWindow(ShellWindow* shell_window); |
+ void ShellWindowActivated(apps::ShellWindow* shell_window); |
+ void RemoveShellWindow(apps::ShellWindow* shell_window); |
void AddObserver(Observer* observer); |
void RemoveObserver(Observer* observer); |
@@ -72,19 +75,22 @@ class ShellWindowRegistry : public BrowserContextKeyedService { |
const ShellWindowList& shell_windows() const { return shell_windows_; } |
// Helper functions to find shell windows with particular attributes. |
- ShellWindow* GetShellWindowForRenderViewHost( |
+ apps::ShellWindow* GetShellWindowForRenderViewHost( |
content::RenderViewHost* render_view_host) const; |
- ShellWindow* GetShellWindowForNativeWindow(gfx::NativeWindow window) const; |
+ apps::ShellWindow* GetShellWindowForNativeWindow( |
+ gfx::NativeWindow window) const; |
// Returns an app window for the given app, or NULL if no shell windows are |
// open. If there is a window for the given app that is active, that one will |
// be returned, otherwise an arbitrary window will be returned. |
- ShellWindow* GetCurrentShellWindowForApp(const std::string& app_id) const; |
+ apps::ShellWindow* GetCurrentShellWindowForApp( |
+ const std::string& app_id) const; |
// Returns an app window for the given app and window key, or NULL if no shell |
// window with the key are open. If there is a window for the given app and |
// key that is active, that one will be returned, otherwise an arbitrary |
// window will be returned. |
- ShellWindow* GetShellWindowForAppAndKey(const std::string& app_id, |
- const std::string& window_key) const; |
+ apps::ShellWindow* GetShellWindowForAppAndKey( |
+ const std::string& app_id, |
+ const std::string& window_key) const; |
// Returns whether a ShellWindow's ID was last known to have a DevToolsAgent |
// attached to it, which should be restored during a reload of a corresponding |
@@ -92,7 +98,7 @@ class ShellWindowRegistry : public BrowserContextKeyedService { |
bool HadDevToolsAttached(content::RenderViewHost* render_view_host) const; |
// Returns the shell window for |window|, looking in all profiles. |
- static ShellWindow* GetShellWindowForNativeWindowAnyProfile( |
+ static apps::ShellWindow* GetShellWindowForNativeWindowAnyProfile( |
gfx::NativeWindow window); |
// Returns true if the number of shell windows registered across all profiles |
@@ -126,11 +132,11 @@ class ShellWindowRegistry : public BrowserContextKeyedService { |
private: |
// Ensures the specified |shell_window| is included in |shell_windows_|. |
// Otherwise adds |shell_window| to the back of |shell_windows_|. |
- void AddShellWindowToList(ShellWindow* shell_window); |
+ void AddShellWindowToList(apps::ShellWindow* shell_window); |
// Bring |shell_window| to the front of |shell_windows_|. If it is not in the |
// list, add it first. |
- void BringToFront(ShellWindow* shell_window); |
+ void BringToFront(apps::ShellWindow* shell_window); |
Profile* profile_; |
ShellWindowList shell_windows_; |