| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 // LauncherItemController overrides: | 43 // LauncherItemController overrides: |
| 44 bool IsVisible() const override; | 44 bool IsVisible() const override; |
| 45 void Launch(ash::LaunchSource source, int event_flags) override; | 45 void Launch(ash::LaunchSource source, int event_flags) override; |
| 46 ash::ShelfItemDelegate::PerformedAction Activate( | 46 ash::ShelfItemDelegate::PerformedAction Activate( |
| 47 ash::LaunchSource source) override; | 47 ash::LaunchSource source) override; |
| 48 ChromeLauncherAppMenuItems GetApplicationList(int event_flags) override; | 48 ChromeLauncherAppMenuItems GetApplicationList(int event_flags) override; |
| 49 ash::ShelfItemDelegate::PerformedAction ItemSelected( | 49 ash::ShelfItemDelegate::PerformedAction ItemSelected( |
| 50 const ui::Event& event) override; | 50 const ui::Event& event) override; |
| 51 base::string16 GetTitle() override; | 51 base::string16 GetTitle() override; |
| 52 ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override; | 52 ash::ShelfMenuModel* CreateApplicationMenu(int event_flags) override; |
| 53 bool CanPin() const override; | |
| 54 void Close() override; | 53 void Close() override; |
| 55 | 54 |
| 56 // Get the refocus url pattern, which can be used to identify this application | 55 // Get the refocus url pattern, which can be used to identify this application |
| 57 // from a URL link. | 56 // from a URL link. |
| 58 const GURL& refocus_url() const { return refocus_url_; } | 57 const GURL& refocus_url() const { return refocus_url_; } |
| 59 // Set the refocus url pattern. Used by unit tests. | 58 // Set the refocus url pattern. Used by unit tests. |
| 60 void set_refocus_url(const GURL& refocus_url) { refocus_url_ = refocus_url; } | 59 void set_refocus_url(const GURL& refocus_url) { refocus_url_ = refocus_url; } |
| 61 | 60 |
| 62 ChromeLauncherController* controller() { return chrome_launcher_controller_; } | 61 ChromeLauncherController* controller() { return chrome_launcher_controller_; } |
| 63 | 62 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 // Since V2 applications can be undetectable after launching, this timer is | 99 // Since V2 applications can be undetectable after launching, this timer is |
| 101 // keeping track of the last launch attempt. | 100 // keeping track of the last launch attempt. |
| 102 base::Time last_launch_attempt_; | 101 base::Time last_launch_attempt_; |
| 103 | 102 |
| 104 ChromeLauncherController* chrome_launcher_controller_; | 103 ChromeLauncherController* chrome_launcher_controller_; |
| 105 | 104 |
| 106 DISALLOW_COPY_AND_ASSIGN(AppShortcutLauncherItemController); | 105 DISALLOW_COPY_AND_ASSIGN(AppShortcutLauncherItemController); |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_
H_ | 108 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_APP_SHORTCUT_LAUNCHER_ITEM_CONTROLLER_
H_ |
| OLD | NEW |