| 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_LAUNCHER_CONTROLLER_HELPER_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ | 6 #define CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "ash/public/cpp/app_launch_id.h" |
| 11 #include "ash/public/cpp/shelf_types.h" | 12 #include "ash/public/cpp/shelf_types.h" |
| 12 #include "base/macros.h" | 13 #include "base/macros.h" |
| 13 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 14 #include "chrome/browser/ui/ash/app_launcher_id.h" | |
| 15 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" | 15 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" |
| 16 | 16 |
| 17 class ArcAppListPrefs; | 17 class ArcAppListPrefs; |
| 18 class ExtensionEnableFlow; | 18 class ExtensionEnableFlow; |
| 19 class Profile; | 19 class Profile; |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 class WebContents; | 22 class WebContents; |
| 23 } | 23 } |
| 24 | 24 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 // Returns the app id of the specified tab, or an empty string if there is | 36 // Returns the app id of the specified tab, or an empty string if there is |
| 37 // no app. All known profiles will be queried for this. | 37 // no app. All known profiles will be queried for this. |
| 38 virtual std::string GetAppID(content::WebContents* tab); | 38 virtual std::string GetAppID(content::WebContents* tab); |
| 39 | 39 |
| 40 // Returns true if |id| is valid for the currently active profile. | 40 // Returns true if |id| is valid for the currently active profile. |
| 41 // Used during restore to ignore no longer valid extensions. | 41 // Used during restore to ignore no longer valid extensions. |
| 42 // Note that already running applications are ignored by the restore process. | 42 // Note that already running applications are ignored by the restore process. |
| 43 virtual bool IsValidIDForCurrentUser(const std::string& id) const; | 43 virtual bool IsValidIDForCurrentUser(const std::string& id) const; |
| 44 | 44 |
| 45 void LaunchApp(ash::AppLauncherId id, | 45 void LaunchApp(ash::AppLaunchId id, |
| 46 ash::ShelfLaunchSource source, | 46 ash::ShelfLaunchSource source, |
| 47 int event_flags); | 47 int event_flags); |
| 48 | 48 |
| 49 virtual ArcAppListPrefs* GetArcAppListPrefs() const; | 49 virtual ArcAppListPrefs* GetArcAppListPrefs() const; |
| 50 | 50 |
| 51 Profile* profile() { return profile_; } | 51 Profile* profile() { return profile_; } |
| 52 const Profile* profile() const { return profile_; } | 52 const Profile* profile() const { return profile_; } |
| 53 void set_profile(Profile* profile) { profile_ = profile; } | 53 void set_profile(Profile* profile) { profile_ = profile; } |
| 54 | 54 |
| 55 private: | 55 private: |
| 56 // ExtensionEnableFlowDelegate: | 56 // ExtensionEnableFlowDelegate: |
| 57 void ExtensionEnableFlowFinished() override; | 57 void ExtensionEnableFlowFinished() override; |
| 58 void ExtensionEnableFlowAborted(bool user_initiated) override; | 58 void ExtensionEnableFlowAborted(bool user_initiated) override; |
| 59 | 59 |
| 60 // The currently active profile for the usage of |GetAppID|. | 60 // The currently active profile for the usage of |GetAppID|. |
| 61 Profile* profile_; | 61 Profile* profile_; |
| 62 std::unique_ptr<ExtensionEnableFlow> extension_enable_flow_; | 62 std::unique_ptr<ExtensionEnableFlow> extension_enable_flow_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(LauncherControllerHelper); | 64 DISALLOW_COPY_AND_ASSIGN(LauncherControllerHelper); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ | 67 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ |
| OLD | NEW |