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 "chrome/browser/ui/ash/launcher/launcher_item_controller.h" | 8 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 12 matching lines...) Expand all Loading... |
23 public: | 23 public: |
24 explicit BrowserShortcutLauncherItemController( | 24 explicit BrowserShortcutLauncherItemController( |
25 ChromeLauncherController* controller); | 25 ChromeLauncherController* controller); |
26 | 26 |
27 virtual ~BrowserShortcutLauncherItemController(); | 27 virtual ~BrowserShortcutLauncherItemController(); |
28 | 28 |
29 // Updates the activation state of the Broswer item. | 29 // Updates the activation state of the Broswer item. |
30 void UpdateBrowserItemState(); | 30 void UpdateBrowserItemState(); |
31 | 31 |
32 // LauncherItemController overrides: | 32 // LauncherItemController overrides: |
33 virtual string16 GetTitle() OVERRIDE; | |
34 virtual bool IsCurrentlyShownInWindow(aura::Window* window) const OVERRIDE; | 33 virtual bool IsCurrentlyShownInWindow(aura::Window* window) const OVERRIDE; |
35 virtual bool IsOpen() const OVERRIDE; | 34 virtual bool IsOpen() const OVERRIDE; |
36 virtual bool IsVisible() const OVERRIDE; | 35 virtual bool IsVisible() const OVERRIDE; |
37 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE; | 36 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE; |
38 virtual void Activate(ash::LaunchSource source) OVERRIDE; | 37 virtual void Activate(ash::LaunchSource source) OVERRIDE; |
39 virtual void Close() OVERRIDE; | 38 virtual void Close() OVERRIDE; |
40 virtual void Clicked(const ui::Event& event) OVERRIDE; | |
41 virtual void OnRemoved() OVERRIDE; | |
42 virtual ChromeLauncherAppMenuItems GetApplicationList( | 39 virtual ChromeLauncherAppMenuItems GetApplicationList( |
43 int event_flags) OVERRIDE; | 40 int event_flags) OVERRIDE; |
| 41 virtual void ItemSelected(const ui::Event& event) OVERRIDE; |
| 42 virtual base::string16 GetTitle() OVERRIDE; |
| 43 virtual ui::MenuModel* CreateContextMenu( |
| 44 aura::RootWindow* root_window) OVERRIDE; |
| 45 virtual ash::LauncherMenuModel* CreateApplicationMenu( |
| 46 int event_flags) OVERRIDE; |
| 47 virtual bool IsDraggable() OVERRIDE; |
| 48 virtual bool ShouldShowTooltip() OVERRIDE; |
44 | 49 |
45 private: | 50 private: |
46 // Get the favicon for the browser list entry for |web_contents|. | 51 // Get the favicon for the browser list entry for |web_contents|. |
47 // Note that for incognito windows the incognito icon will be returned. | 52 // Note that for incognito windows the incognito icon will be returned. |
48 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; | 53 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; |
49 | 54 |
50 // Get the title for the browser list entry for |web_contents|. | 55 // Get the title for the browser list entry for |web_contents|. |
51 // If |web_contents| has not loaded, returns "Net Tab". | 56 // If |web_contents| has not loaded, returns "Net Tab". |
52 string16 GetBrowserListTitle(content::WebContents* web_contents) const; | 57 string16 GetBrowserListTitle(content::WebContents* web_contents) const; |
53 | 58 |
54 // Check if the given |web_contents| is in incognito mode. | 59 // Check if the given |web_contents| is in incognito mode. |
55 bool IsIncognito(content::WebContents* web_contents) const; | 60 bool IsIncognito(content::WebContents* web_contents) const; |
56 | 61 |
57 // Activate a browser - or advance to the next one on the list. | 62 // Activate a browser - or advance to the next one on the list. |
58 void ActivateOrAdvanceToNextBrowser(); | 63 void ActivateOrAdvanceToNextBrowser(); |
59 | 64 |
60 // Returns true when the given |browser| is listed in the browser application | 65 // Returns true when the given |browser| is listed in the browser application |
61 // list. | 66 // list. |
62 bool IsBrowserRepresentedInBrowserList(Browser* browser); | 67 bool IsBrowserRepresentedInBrowserList(Browser* browser); |
63 | 68 |
64 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); | 69 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); |
65 }; | 70 }; |
66 | 71 |
67 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ | 72 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ |
OLD | NEW |