| 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 7379bf70e28b8de509f3eba636a067a98f7c1f23..cdd2909c00089b2ed06fcb5d41fda26437e763db 100644
|
| --- a/chrome/browser/extensions/shell_window_registry.h
|
| +++ b/chrome/browser/extensions/shell_window_registry.h
|
| @@ -39,6 +39,8 @@ class ShellWindowRegistry : public ProfileKeyedService,
|
| public:
|
| // Called just after a shell window was added.
|
| virtual void OnShellWindowAdded(ShellWindow* shell_window) = 0;
|
| + // Called when the window icon changes.
|
| + virtual void OnShellWindowIconChanged(ShellWindow* shell_window) = 0;
|
| // Called just after a shell window was removed.
|
| virtual void OnShellWindowRemoved(ShellWindow* shell_window) = 0;
|
|
|
| @@ -58,6 +60,7 @@ class ShellWindowRegistry : public ProfileKeyedService,
|
| static ShellWindowRegistry* Get(Profile* profile);
|
|
|
| void AddShellWindow(ShellWindow* shell_window);
|
| + void ShellWindowIconChanged(ShellWindow* shell_window);
|
| void RemoveShellWindow(ShellWindow* shell_window);
|
|
|
| void AddObserver(Observer* observer);
|
|
|