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

Side by Side Diff: chrome/browser/ui/app_list/app_list_controller.h

Issue 10871011: Move common app_list delegate code to chrome/browser/ui/app_list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Unit test file only in chrome Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/app_list/OWNERS ('k') | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_APP_LIST_APP_LIST_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 class Profile; 10 class Profile;
11 11
12 // Interface to allow the view delegate to call out to whatever is controlling 12 // Interface to allow the view delegate to call out to whatever is controlling
13 // the app list. This will have different implementations for different 13 // the app list. This will have different implementations for different
14 // platforms. 14 // platforms.
15 class AppListController { 15 class AppListController {
16 public: 16 public:
17 virtual ~AppListController() {} 17 virtual ~AppListController() {}
18 18
19 // Handle the controller being closed. 19 // Handle the controller being closed.
20 virtual void CloseView() = 0; 20 virtual void CloseView() = 0;
21 21
22 // Control of pinning apps. 22 // Control of pinning apps.
23 virtual bool IsAppPinned(const std::string& extension_id) = 0; 23 virtual bool IsAppPinned(const std::string& extension_id) = 0;
24 virtual void PinApp(const std::string& extension_id) = 0; 24 virtual void PinApp(const std::string& extension_id) = 0;
25 virtual void UnpinApp(const std::string& extension_id) = 0; 25 virtual void UnpinApp(const std::string& extension_id) = 0;
26 virtual bool CanPin() = 0; 26 virtual bool CanPin() = 0;
27 27
28 // App has been clicked on in the app list. 28 // App has been clicked on in the app list.
29 virtual void ActivateApp(Profile* profile, 29 virtual void ActivateApp(Profile* profile,
30 const std::string& extension_id, 30 const std::string& extension_id,
31 int event_flags) = 0; 31 int event_flags) = 0;
32 }; 32 };
33 33
34 #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_CONTROLLER_H_ 34 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/OWNERS ('k') | chrome/browser/ui/app_list/app_list_view_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698