| 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_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> |
| 9 | 10 |
| 10 #include "base/macros.h" | 11 #include "base/macros.h" |
| 11 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 12 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 13 #include "chrome/browser/chromeos/arc/arc_auth_service.h" | 14 #include "chrome/browser/chromeos/arc/arc_auth_service.h" |
| 14 #include "chrome/browser/ui/app_list/arc/arc_app_icon_loader.h" | 15 #include "chrome/browser/ui/app_list/arc/arc_app_icon_loader.h" |
| 15 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" | 16 #include "chrome/browser/ui/app_list/arc/arc_app_list_prefs.h" |
| 16 | 17 |
| 17 class ArcAppDeferredLauncherItemController; | 18 class ArcAppDeferredLauncherItemController; |
| 18 class ChromeLauncherControllerImpl; | 19 class ChromeLauncherControllerImpl; |
| 19 | 20 |
| 21 // ArcAppDeferredLauncherController displays visual feedback that the ARC |
| 22 // application the user has just activated is waiting for ARC to be ready, and |
| 23 // will be asynchronously launched as soon as it can. |
| 20 class ArcAppDeferredLauncherController : public ArcAppListPrefs::Observer, | 24 class ArcAppDeferredLauncherController : public ArcAppListPrefs::Observer, |
| 21 public arc::ArcAuthService::Observer { | 25 public arc::ArcAuthService::Observer { |
| 22 public: | 26 public: |
| 23 explicit ArcAppDeferredLauncherController( | 27 explicit ArcAppDeferredLauncherController( |
| 24 ChromeLauncherControllerImpl* owner); | 28 ChromeLauncherControllerImpl* owner); |
| 25 ~ArcAppDeferredLauncherController() override; | 29 ~ArcAppDeferredLauncherController() override; |
| 26 | 30 |
| 27 bool HasApp(const std::string& app_id) const; | 31 bool HasApp(const std::string& app_id) const; |
| 28 | 32 |
| 29 base::TimeDelta GetActiveTime(const std::string& app_id) const; | 33 base::TimeDelta GetActiveTime(const std::string& app_id) const; |
| 30 | 34 |
| 31 // Registers deferred Arc app launch. | 35 // Registers deferred ARC app launch. |app_id| is the app to be launched, and |
| 32 void RegisterDeferredLaunch(const std::string& app_id); | 36 // |event_flags| describes the original event flags that triggered the app's |
| 37 // activation. |
| 38 void RegisterDeferredLaunch(const std::string& app_id, int event_flags); |
| 33 | 39 |
| 34 // Applies spinning effect if requested app is handled by deferred controller. | 40 // Applies spinning effect if requested app is handled by deferred controller. |
| 35 void MaybeApplySpinningEffect(const std::string& app_id, | 41 void MaybeApplySpinningEffect(const std::string& app_id, |
| 36 gfx::ImageSkia* image); | 42 gfx::ImageSkia* image); |
| 37 | 43 |
| 38 // ArcAppListPrefs::Observer: | 44 // ArcAppListPrefs::Observer: |
| 39 void OnAppReadyChanged(const std::string& app_id, bool ready) override; | 45 void OnAppReadyChanged(const std::string& app_id, bool ready) override; |
| 40 void OnAppRemoved(const std::string& app_id) override; | 46 void OnAppRemoved(const std::string& app_id) override; |
| 41 | 47 |
| 42 // arc::ArcAuthService::Observer: | 48 // arc::ArcAuthService::Observer: |
| (...skipping 21 matching lines...) Expand all Loading... |
| 64 | 70 |
| 65 AppControllerMap app_controller_map_; | 71 AppControllerMap app_controller_map_; |
| 66 | 72 |
| 67 // Always keep this the last member of this class. | 73 // Always keep this the last member of this class. |
| 68 base::WeakPtrFactory<ArcAppDeferredLauncherController> weak_ptr_factory_; | 74 base::WeakPtrFactory<ArcAppDeferredLauncherController> weak_ptr_factory_; |
| 69 | 75 |
| 70 DISALLOW_COPY_AND_ASSIGN(ArcAppDeferredLauncherController); | 76 DISALLOW_COPY_AND_ASSIGN(ArcAppDeferredLauncherController); |
| 71 }; | 77 }; |
| 72 | 78 |
| 73 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_CONTROLLER_H
_ | 79 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_ARC_APP_DEFERRED_LAUNCHER_CONTROLLER_H
_ |
| OLD | NEW |