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 "chrome/browser/ui/ash/launcher/launcher_item_controller.h" | 9 #include "chrome/browser/ui/ash/launcher/launcher_item_controller.h" |
10 #include "chrome/browser/ui/browser_list.h" | 10 #include "chrome/browser/ui/browser_list.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 void Launch(ash::LaunchSource source, int event_flags) override; | 47 void Launch(ash::LaunchSource source, int event_flags) override; |
48 ShelfItemDelegate::PerformedAction Activate( | 48 ShelfItemDelegate::PerformedAction Activate( |
49 ash::LaunchSource source) override; | 49 ash::LaunchSource source) override; |
50 ChromeLauncherAppMenuItems GetApplicationList(int event_flags) override; | 50 ChromeLauncherAppMenuItems GetApplicationList(int event_flags) override; |
51 ash::ShelfItemDelegate::PerformedAction ItemSelected( | 51 ash::ShelfItemDelegate::PerformedAction ItemSelected( |
52 const ui::Event& event) override; | 52 const ui::Event& event) override; |
53 base::string16 GetTitle() override; | 53 base::string16 GetTitle() override; |
54 ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override; | 54 ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override; |
55 bool IsDraggable() override; | 55 bool IsDraggable() override; |
56 bool CanPin() const override; | 56 bool CanPin() const override; |
57 bool ShouldShowTooltip() override; | |
58 void Close() override; | 57 void Close() override; |
59 | 58 |
60 private: | 59 private: |
61 // Get the favicon for the browser list entry for |web_contents|. | 60 // Get the favicon for the browser list entry for |web_contents|. |
62 // Note that for incognito windows the incognito icon will be returned. | 61 // Note that for incognito windows the incognito icon will be returned. |
63 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; | 62 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; |
64 | 63 |
65 // Get the title for the browser list entry for |web_contents|. | 64 // Get the title for the browser list entry for |web_contents|. |
66 // If |web_contents| has not loaded, returns "Net Tab". | 65 // If |web_contents| has not loaded, returns "Net Tab". |
67 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const; | 66 base::string16 GetBrowserListTitle(content::WebContents* web_contents) const; |
(...skipping 12 matching lines...) Expand all Loading... |
80 | 79 |
81 // Get a list of active browsers. | 80 // Get a list of active browsers. |
82 BrowserList::BrowserVector GetListOfActiveBrowsers(); | 81 BrowserList::BrowserVector GetListOfActiveBrowsers(); |
83 | 82 |
84 ash::ShelfModel* shelf_model_; | 83 ash::ShelfModel* shelf_model_; |
85 | 84 |
86 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); | 85 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); |
87 }; | 86 }; |
88 | 87 |
89 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ | 88 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ |
OLD | NEW |