| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER
_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER
_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER
_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROLLER
_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/scoped_observer.h" |
| 9 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" | 10 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" |
| 10 #include "chrome/browser/ui/browser_list.h" | 11 #include "chrome/browser/ui/browser_list.h" |
| 11 #include "content/public/browser/notification_observer.h" | 12 #include "chrome/browser/ui/browser_list_observer.h" |
| 12 #include "content/public/browser/notification_registrar.h" | |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 class ShelfModel; | 15 class ShelfModel; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 class WebContents; | 19 class WebContents; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class ChromeLauncherController; | 22 class ChromeLauncherController; |
| 23 | 23 |
| 24 // Shelf item delegate for a browser shortcut; only one such item should exist. | 24 // Shelf item delegate for a browser shortcut; only one such item should exist. |
| 25 // This item shows an application menu that lists open browser windows or tabs. | 25 // This item shows an application menu that lists open browser windows or tabs. |
| 26 class BrowserShortcutLauncherItemController | 26 class BrowserShortcutLauncherItemController |
| 27 : public LauncherItemController, | 27 : public LauncherItemController, |
| 28 public content::NotificationObserver { | 28 public chrome::BrowserListObserver { |
| 29 public: | 29 public: |
| 30 BrowserShortcutLauncherItemController(ChromeLauncherController* controller, | 30 BrowserShortcutLauncherItemController(ChromeLauncherController* controller, |
| 31 ash::ShelfModel* shelf_model); | 31 ash::ShelfModel* shelf_model); |
| 32 | 32 |
| 33 ~BrowserShortcutLauncherItemController() override; | 33 ~BrowserShortcutLauncherItemController() override; |
| 34 | 34 |
| 35 // Updates the activation state of the Broswer item. | 35 // Updates the activation state of the Broswer item. |
| 36 void UpdateBrowserItemState(); | 36 void UpdateBrowserItemState(); |
| 37 | 37 |
| 38 // Sets the shelf id for the browser window if the browser is represented. | 38 // Sets the shelf id for the browser window if the browser is represented. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 57 // SHELF_ACTION_WINDOW_ACTIVATED, or SHELF_ACTION_NEW_WINDOW_CREATED. | 57 // SHELF_ACTION_WINDOW_ACTIVATED, or SHELF_ACTION_NEW_WINDOW_CREATED. |
| 58 ash::ShelfAction ActivateOrAdvanceToNextBrowser(); | 58 ash::ShelfAction ActivateOrAdvanceToNextBrowser(); |
| 59 | 59 |
| 60 // Returns true when the given |browser| is listed in the browser application | 60 // Returns true when the given |browser| is listed in the browser application |
| 61 // list. | 61 // list. |
| 62 bool IsBrowserRepresentedInBrowserList(Browser* browser); | 62 bool IsBrowserRepresentedInBrowserList(Browser* browser); |
| 63 | 63 |
| 64 // Get a list of active browsers. | 64 // Get a list of active browsers. |
| 65 BrowserList::BrowserVector GetListOfActiveBrowsers(); | 65 BrowserList::BrowserVector GetListOfActiveBrowsers(); |
| 66 | 66 |
| 67 // content::NotificationObserver: | 67 // chrome::BrowserListObserver: |
| 68 void Observe(int type, | 68 void OnBrowserCloseStarted(Browser* browser) override; |
| 69 const content::NotificationSource& source, | |
| 70 const content::NotificationDetails& details) override; | |
| 71 | 69 |
| 72 ash::ShelfModel* shelf_model_; | 70 ash::ShelfModel* shelf_model_; |
| 73 | 71 |
| 74 // The cached list of open browser windows shown in an application menu. | 72 // The cached list of open browser windows shown in an application menu. |
| 75 BrowserList::BrowserVector browser_menu_items_; | 73 BrowserList::BrowserVector browser_menu_items_; |
| 76 | 74 |
| 77 // Registers for notifications of closing browser windows. | 75 // Observer for browser windows closing events. |
| 78 content::NotificationRegistrar registrar_; | 76 ScopedObserver<BrowserList, BrowserListObserver> browser_list_observer_; |
| 79 | 77 |
| 80 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); | 78 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); |
| 81 }; | 79 }; |
| 82 | 80 |
| 83 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ | 81 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ |
| OLD | NEW |