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

Side by Side Diff: chrome/browser/ui/app_list/search/search_util.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 2014 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_SEARCH_UTIL_H_
6 #define CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_UTIL_H_
7
8 namespace app_list {
9
10 // The type of the chrome search result. This is used for logging so do not
11 // change the order of this enum.
12 enum SearchResultType {
13 // A result that forwards an omnibox search result.
14 OMNIBOX_SEARCH_RESULT,
15 // An app result.
16 APP_SEARCH_RESULT,
17 // A search result from the webstore.
18 WEBSTORE_SEARCH_RESULT,
19 // A result that opens a webstore search.
20 SEARCH_WEBSTORE_SEARCH_RESULT,
21 // A result that opens a people search.
22 SEARCH_PEOPLE_SEARCH_RESULT,
23 SEARCH_RESULT_TYPE_BOUNDARY
24 };
25
26 // Record a UMA histogram.
27 void RecordHistogram(SearchResultType type);
28
29 } // namespace app_list
30
31 #endif // CHROME_BROWSER_UI_APP_LIST_SEARCH_SEARCH_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/search/search_controller.cc ('k') | chrome/browser/ui/app_list/search/search_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698