| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROLLER
_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROLLER
_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROLLER
_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROLLER
_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 int event_flags, | 26 int event_flags, |
| 27 const base::WeakPtr<ArcAppDeferredLauncherController>& host); | 27 const base::WeakPtr<ArcAppDeferredLauncherController>& host); |
| 28 | 28 |
| 29 ~ArcAppDeferredLauncherItemController() override; | 29 ~ArcAppDeferredLauncherItemController() override; |
| 30 | 30 |
| 31 base::TimeDelta GetActiveTime() const; | 31 base::TimeDelta GetActiveTime() const; |
| 32 | 32 |
| 33 int event_flags() const { return event_flags_; } | 33 int event_flags() const { return event_flags_; } |
| 34 | 34 |
| 35 // ash::ShelfItemDelegate | 35 // ash::ShelfItemDelegate |
| 36 ash::ShelfItemDelegate::PerformedAction ItemSelected( | 36 ash::ShelfAction ItemSelected(ui::EventType event_type, |
| 37 const ui::Event& event) override; | 37 int event_flags, |
| 38 int64_t display_id, |
| 39 ash::ShelfLaunchSource source) override; |
| 38 ash::ShelfAppMenuItemList GetAppMenuItems(int event_flags) override; | 40 ash::ShelfAppMenuItemList GetAppMenuItems(int event_flags) override; |
| 39 void Close() override; | 41 void Close() override; |
| 40 | 42 |
| 41 // LauncherItemController overrides: | |
| 42 ash::ShelfItemDelegate::PerformedAction Activate( | |
| 43 ash::LaunchSource source) override; | |
| 44 | |
| 45 private: | 43 private: |
| 46 // The flags of the event that caused the ARC app to be activated. These will | 44 // The flags of the event that caused the ARC app to be activated. These will |
| 47 // be propagated to the launch event once the app is actually launched. | 45 // be propagated to the launch event once the app is actually launched. |
| 48 const int event_flags_; | 46 const int event_flags_; |
| 49 | 47 |
| 50 base::WeakPtr<ArcAppDeferredLauncherController> host_; | 48 base::WeakPtr<ArcAppDeferredLauncherController> host_; |
| 51 const base::Time start_time_; | 49 const base::Time start_time_; |
| 52 | 50 |
| 53 DISALLOW_COPY_AND_ASSIGN(ArcAppDeferredLauncherItemController); | 51 DISALLOW_COPY_AND_ASSIGN(ArcAppDeferredLauncherItemController); |
| 54 }; | 52 }; |
| 55 | 53 |
| 56 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROL
LER_H_ | 54 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_ITEM_CONTROL
LER_H_ |
| OLD | NEW |