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 #include "chrome/browser/ui/ash/launcher/arc_app_deferred_launcher_item_controll
er.h" | 5 #include "chrome/browser/ui/ash/launcher/arc_app_deferred_launcher_item_controll
er.h" |
6 | 6 |
7 #include <memory> | |
8 | |
9 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" | 9 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" |
12 #include "chrome/browser/ui/ash/launcher/arc_app_deferred_launcher_controller.h" | 10 #include "chrome/browser/ui/ash/launcher/arc_app_deferred_launcher_controller.h" |
13 #include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h" | 11 #include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h" |
14 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" | 12 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" |
15 | 13 |
16 ArcAppDeferredLauncherItemController::ArcAppDeferredLauncherItemController( | 14 ArcAppDeferredLauncherItemController::ArcAppDeferredLauncherItemController( |
17 const std::string& arc_app_id, | 15 const std::string& arc_app_id, |
18 ChromeLauncherController* controller, | 16 ChromeLauncherController* controller, |
19 int event_flags, | |
20 const base::WeakPtr<ArcAppDeferredLauncherController>& host) | 17 const base::WeakPtr<ArcAppDeferredLauncherController>& host) |
21 : LauncherItemController(TYPE_APP, arc_app_id, "", controller), | 18 : LauncherItemController(TYPE_APP, arc_app_id, "", controller), |
22 event_flags_(event_flags), | |
23 host_(host), | 19 host_(host), |
24 start_time_(base::Time::Now()) {} | 20 start_time_(base::Time::Now()) {} |
25 | 21 |
26 ArcAppDeferredLauncherItemController::~ArcAppDeferredLauncherItemController() { | 22 ArcAppDeferredLauncherItemController::~ArcAppDeferredLauncherItemController() { |
27 if (host_) | 23 if (host_) |
28 host_->Remove(app_id()); | 24 host_->Remove(app_id()); |
29 } | 25 } |
30 | 26 |
31 base::TimeDelta ArcAppDeferredLauncherItemController::GetActiveTime() const { | 27 base::TimeDelta ArcAppDeferredLauncherItemController::GetActiveTime() const { |
32 return base::Time::Now() - start_time_; | 28 return base::Time::Now() - start_time_; |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 78 |
83 ash::ShelfItemDelegate::PerformedAction | 79 ash::ShelfItemDelegate::PerformedAction |
84 ArcAppDeferredLauncherItemController::Activate(ash::LaunchSource source) { | 80 ArcAppDeferredLauncherItemController::Activate(ash::LaunchSource source) { |
85 return ash::ShelfItemDelegate::kNoAction; | 81 return ash::ShelfItemDelegate::kNoAction; |
86 } | 82 } |
87 | 83 |
88 ChromeLauncherAppMenuItems | 84 ChromeLauncherAppMenuItems |
89 ArcAppDeferredLauncherItemController::GetApplicationList(int event_flags) { | 85 ArcAppDeferredLauncherItemController::GetApplicationList(int event_flags) { |
90 return ChromeLauncherAppMenuItems(); | 86 return ChromeLauncherAppMenuItems(); |
91 } | 87 } |
OLD | NEW |