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

Side by Side Diff: chrome/browser/ui/app_list/search/chrome_search_result.h

Issue 621823004: Simplifies the structure of app_list search a bit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 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
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_APP_LIST_SEARCH_CHROME_SEARCH_RESULT_H_
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_CHROME_SEARCH_RESULT_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "ui/app_list/search_result.h"
12
13 namespace app_list {
14
15 // The type of the search result. This is used for logging so do not change the
16 // order of this enum.
17 enum ChromeSearchResultType {
18 // A result that forwards an omnibox search result.
19 OMNIBOX_SEARCH_RESULT,
20 // An app result.
21 APP_SEARCH_RESULT,
22 // A search result from the webstore.
23 WEBSTORE_SEARCH_RESULT,
24 // A result that opens a webstore search.
25 SEARCH_WEBSTORE_SEARCH_RESULT,
26 // A result that opens a people search.
27 SEARCH_PEOPLE_SEARCH_RESULT,
28 SEARCH_RESULT_TYPE_BOUNDARY
29 };
30
31 // Base class of all search results. It provides an additional interface
32 // for SearchController to mix the results, duplicate a result from a
33 // SearchProvider and pass it to UI and invoke actions on the results when
34 // underlying UI is activated.
35 class ChromeSearchResult : public SearchResult {
36 public:
37 ChromeSearchResult() {}
38 virtual ~ChromeSearchResult() {}
39
40 // Creates a copy of the result.
41 virtual scoped_ptr<ChromeSearchResult> Duplicate() = 0;
42
43 virtual ChromeSearchResultType GetType() = 0;
44
45 // Overridden from SearchResult:
46 virtual void Open(int event_flags) = 0;
47 virtual void InvokeAction(int action_index, int event_flags) = 0;
48
49 private:
50 DISALLOW_COPY_AND_ASSIGN(ChromeSearchResult);
51 };
52
53 } // namespace app_list
54
55 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_CHROME_SEARCH_RESULT_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/search/app_search_provider_unittest.cc ('k') | chrome/browser/ui/app_list/search/mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698