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 16 matching lines...) Expand all Loading... |
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 bool IsOpen() const OVERRIDE; | 33 virtual bool IsOpen() const OVERRIDE; |
34 virtual bool IsVisible() const OVERRIDE; | 34 virtual bool IsVisible() const OVERRIDE; |
35 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE; | 35 virtual void Launch(ash::LaunchSource source, int event_flags) OVERRIDE; |
36 virtual bool Activate(ash::LaunchSource source) OVERRIDE; | 36 virtual bool Activate(ash::LaunchSource source) OVERRIDE; |
37 virtual void Close() OVERRIDE; | |
38 virtual ChromeLauncherAppMenuItems GetApplicationList( | 37 virtual ChromeLauncherAppMenuItems GetApplicationList( |
39 int event_flags) OVERRIDE; | 38 int event_flags) OVERRIDE; |
40 virtual bool ItemSelected(const ui::Event& event) OVERRIDE; | 39 virtual bool ItemSelected(const ui::Event& event) OVERRIDE; |
41 virtual base::string16 GetTitle() OVERRIDE; | 40 virtual base::string16 GetTitle() OVERRIDE; |
42 virtual ui::MenuModel* CreateContextMenu( | 41 virtual ui::MenuModel* CreateContextMenu( |
43 aura::Window* root_window) OVERRIDE; | 42 aura::Window* root_window) OVERRIDE; |
44 virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) OVERRIDE; | 43 virtual ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) OVERRIDE; |
45 virtual bool IsDraggable() OVERRIDE; | 44 virtual bool IsDraggable() OVERRIDE; |
46 virtual bool ShouldShowTooltip() OVERRIDE; | 45 virtual bool ShouldShowTooltip() OVERRIDE; |
| 46 virtual void Close() OVERRIDE; |
47 | 47 |
48 private: | 48 private: |
49 // Get the favicon for the browser list entry for |web_contents|. | 49 // Get the favicon for the browser list entry for |web_contents|. |
50 // Note that for incognito windows the incognito icon will be returned. | 50 // Note that for incognito windows the incognito icon will be returned. |
51 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; | 51 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; |
52 | 52 |
53 // Get the title for the browser list entry for |web_contents|. | 53 // Get the title for the browser list entry for |web_contents|. |
54 // If |web_contents| has not loaded, returns "Net Tab". | 54 // If |web_contents| has not loaded, returns "Net Tab". |
55 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const; | 55 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const; |
56 | 56 |
57 // Check if the given |web_contents| is in incognito mode. | 57 // Check if the given |web_contents| is in incognito mode. |
58 bool IsIncognito(content::WebContents* web_contents) const; | 58 bool IsIncognito(content::WebContents* web_contents) const; |
59 | 59 |
60 // Activate a browser - or advance to the next one on the list. | 60 // Activate a browser - or advance to the next one on the list. |
61 void ActivateOrAdvanceToNextBrowser(); | 61 void ActivateOrAdvanceToNextBrowser(); |
62 | 62 |
63 // Returns true when the given |browser| is listed in the browser application | 63 // Returns true when the given |browser| is listed in the browser application |
64 // list. | 64 // list. |
65 bool IsBrowserRepresentedInBrowserList(Browser* browser); | 65 bool IsBrowserRepresentedInBrowserList(Browser* browser); |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); | 67 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); |
68 }; | 68 }; |
69 | 69 |
70 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ | 70 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ |
OLD | NEW |