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

Side by Side Diff: chrome/browser/ui/app_list/app_list_view_delegate.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, 3 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
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_VIEW_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
6 #define CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "chrome/browser/ui/ash/app_list/app_list_controller.h" 13 #include "chrome/browser/ui/app_list/app_list_controller.h"
14 #include "ui/app_list/app_list_view_delegate.h" 14 #include "ui/app_list/app_list_view_delegate.h"
15 15
16 class AppsModelBuilder; 16 class AppsModelBuilder;
17 class SearchBuilder; 17 class SearchBuilder;
18 18
19 class AppListViewDelegate : public app_list::AppListViewDelegate { 19 class AppListViewDelegate : public app_list::AppListViewDelegate {
20 public: 20 public:
21 // The delegate will take ownership of the controller. 21 // The delegate will take ownership of the controller.
22 explicit AppListViewDelegate(AppListController* controller); 22 explicit AppListViewDelegate(AppListController* controller);
23 virtual ~AppListViewDelegate(); 23 virtual ~AppListViewDelegate();
24 24
25 private: 25 private:
26 // Overridden from app_list::AppListViewDelegate: 26 // Overridden from app_list::AppListViewDelegate:
27 virtual void SetModel(app_list::AppListModel* model) OVERRIDE; 27 virtual void SetModel(app_list::AppListModel* model) OVERRIDE;
28 virtual void ActivateAppListItem(app_list::AppListItemModel* item, 28 virtual void ActivateAppListItem(app_list::AppListItemModel* item,
29 int event_flags) OVERRIDE; 29 int event_flags) OVERRIDE;
30 virtual void StartSearch() OVERRIDE; 30 virtual void StartSearch() OVERRIDE;
31 virtual void StopSearch() OVERRIDE; 31 virtual void StopSearch() OVERRIDE;
32 virtual void OpenSearchResult(const app_list::SearchResult& result, 32 virtual void OpenSearchResult(const app_list::SearchResult& result,
33 int event_flags) OVERRIDE; 33 int event_flags) OVERRIDE;
34 virtual void Close() OVERRIDE; 34 virtual void Close() OVERRIDE;
35 35
36 scoped_ptr<AppsModelBuilder> apps_builder_; 36 scoped_ptr<AppsModelBuilder> apps_builder_;
37 scoped_ptr<SearchBuilder> search_builder_; 37 scoped_ptr<SearchBuilder> search_builder_;
38 scoped_ptr<AppListController> controller_; 38 scoped_ptr<AppListController> controller_;
39 39
40 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate); 40 DISALLOW_COPY_AND_ASSIGN(AppListViewDelegate);
41 }; 41 };
42 42
43 #endif // CHROME_BROWSER_UI_ASH_APP_LIST_APP_LIST_VIEW_DELEGATE_H_ 43 #endif // CHROME_BROWSER_UI_APP_LIST_APP_LIST_VIEW_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/app_list_controller.h ('k') | chrome/browser/ui/app_list/app_list_view_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698