Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(305)

Side by Side Diff: chrome/browser/ui/ash/launcher/launcher_controller_helper.h

Issue 2055553004: arc: Support pinned apps across Arc-enabled and Arc-disabled platforms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome_mash_shelf_controller.cc update due namespace renaming Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 // Sets the currently active profile for the usage of |GetAppID|. 44 // Sets the currently active profile for the usage of |GetAppID|.
45 virtual void SetCurrentUser(Profile* profile); 45 virtual void SetCurrentUser(Profile* profile);
46 46
47 void LaunchApp(const std::string& app_id, 47 void LaunchApp(const std::string& app_id,
48 ash::LaunchSource source, 48 ash::LaunchSource source,
49 int event_flags); 49 int event_flags);
50 50
51 virtual ArcAppListPrefs* GetArcAppListPrefs() const; 51 virtual ArcAppListPrefs* GetArcAppListPrefs() const;
52 52
53 Profile* profile() { return profile_; }
53 const Profile* profile() const { return profile_; } 54 const Profile* profile() const { return profile_; }
54 55
55 private: 56 private:
56 // ExtensionEnableFlowDelegate: 57 // ExtensionEnableFlowDelegate:
57 void ExtensionEnableFlowFinished() override; 58 void ExtensionEnableFlowFinished() override;
58 void ExtensionEnableFlowAborted(bool user_initiated) override; 59 void ExtensionEnableFlowAborted(bool user_initiated) override;
59 60
60 Profile* profile_; 61 Profile* profile_;
61 std::unique_ptr<ExtensionEnableFlow> extension_enable_flow_; 62 std::unique_ptr<ExtensionEnableFlow> extension_enable_flow_;
62 63
63 DISALLOW_COPY_AND_ASSIGN(LauncherControllerHelper); 64 DISALLOW_COPY_AND_ASSIGN(LauncherControllerHelper);
64 }; 65 };
65 66
66 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_ 67 #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_LAUNCHER_CONTROLLER_HELPER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/launcher/launcher_context_menu_unittest.cc ('k') | sync/protocol/app_list_specifics.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698