| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // LauncherItemController overrides: | 45 // LauncherItemController overrides: |
| 46 bool IsVisible() const override; | 46 bool IsVisible() const override; |
| 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; | |
| 56 bool CanPin() const override; | 55 bool CanPin() const override; |
| 57 void Close() override; | 56 void Close() override; |
| 58 | 57 |
| 59 private: | 58 private: |
| 60 // Get the favicon for the browser list entry for |web_contents|. | 59 // Get the favicon for the browser list entry for |web_contents|. |
| 61 // Note that for incognito windows the incognito icon will be returned. | 60 // Note that for incognito windows the incognito icon will be returned. |
| 62 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; | 61 gfx::Image GetBrowserListIcon(content::WebContents* web_contents) const; |
| 63 | 62 |
| 64 // Get the title for the browser list entry for |web_contents|. | 63 // Get the title for the browser list entry for |web_contents|. |
| 65 // If |web_contents| has not loaded, returns "Net Tab". | 64 // If |web_contents| has not loaded, returns "Net Tab". |
| (...skipping 13 matching lines...) Expand all Loading... |
| 79 | 78 |
| 80 // Get a list of active browsers. | 79 // Get a list of active browsers. |
| 81 BrowserList::BrowserVector GetListOfActiveBrowsers(); | 80 BrowserList::BrowserVector GetListOfActiveBrowsers(); |
| 82 | 81 |
| 83 ash::ShelfModel* shelf_model_; | 82 ash::ShelfModel* shelf_model_; |
| 84 | 83 |
| 85 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); | 84 DISALLOW_COPY_AND_ASSIGN(BrowserShortcutLauncherItemController); |
| 86 }; | 85 }; |
| 87 | 86 |
| 88 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ | 87 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_BROWSER_SHORTCUT_LAUNCHER_ITEM_CONTROL
LER_H_ |
| OLD | NEW |