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

Side by Side Diff: components/omnibox/autocomplete_match_type.h

Issue 815273002: Remove and deprecate SEARCH_SUGGEST_ANSWER (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing suggest answer enum from java Created 5 years, 10 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
« no previous file with comments | « components/omnibox/autocomplete_match.cc ('k') | components/omnibox/autocomplete_match_type.cc » ('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 2014 The Chromium Authors. All rights reserved. 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 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 COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_ 5 #ifndef COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_
6 #define COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_ 6 #define COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 struct AutocompleteMatchType { 10 struct AutocompleteMatchType {
11 // Type of AutocompleteMatch. Typedef'ed in autocomplete_match.h. Defined here 11 // Type of AutocompleteMatch. Typedef'ed in autocomplete_match.h. Defined here
12 // to pass the type details back and forth between the browser and renderer. 12 // to pass the type details back and forth between the browser and renderer.
13 // 13 //
14 // These values are stored in ShortcutsDatabase and in GetDemotionsByType() 14 // These values are stored in ShortcutsDatabase and in GetDemotionsByType()
Mark P 2015/01/30 23:13:27 This comment makes me worried about this action.
Justin Donnelly 2015/01/30 23:21:04 Yeah, you're right. Dave, it looks to me like the
15 // and cannot be renumbered. 15 // and cannot be renumbered.
16 enum Type { 16 enum Type {
17 URL_WHAT_YOU_TYPED = 0, // The input as a URL. 17 URL_WHAT_YOU_TYPED = 0, // The input as a URL.
18 HISTORY_URL = 1, // A past page whose URL contains the input. 18 HISTORY_URL = 1, // A past page whose URL contains the input.
19 HISTORY_TITLE = 2, // A past page whose title contains the input. 19 HISTORY_TITLE = 2, // A past page whose title contains the input.
20 HISTORY_BODY = 3, // A past page whose body contains the input. 20 HISTORY_BODY = 3, // A past page whose body contains the input.
21 HISTORY_KEYWORD = 4, // A past page whose keyword contains the 21 HISTORY_KEYWORD = 4, // A past page whose keyword contains the
22 // input. 22 // input.
23 NAVSUGGEST = 5, // A suggested URL. 23 NAVSUGGEST = 5, // A suggested URL.
24 SEARCH_WHAT_YOU_TYPED = 6, // The input as a search query (with the 24 SEARCH_WHAT_YOU_TYPED = 6, // The input as a search query (with the
(...skipping 10 matching lines...) Expand all
35 SEARCH_SUGGEST_PROFILE = 12, // A personalized suggested search for a 35 SEARCH_SUGGEST_PROFILE = 12, // A personalized suggested search for a
36 // Google+ profile. 36 // Google+ profile.
37 SEARCH_OTHER_ENGINE = 13, // A search with a non-default engine. 37 SEARCH_OTHER_ENGINE = 13, // A search with a non-default engine.
38 EXTENSION_APP = 14, // An Extension App with a title/url that 38 EXTENSION_APP = 14, // An Extension App with a title/url that
39 // contains the input (deprecated). 39 // contains the input (deprecated).
40 CONTACT_DEPRECATED = 15, // One of the user's contacts 40 CONTACT_DEPRECATED = 15, // One of the user's contacts
41 // (deprecated). 41 // (deprecated).
42 BOOKMARK_TITLE = 16, // A bookmark whose title contains the 42 BOOKMARK_TITLE = 16, // A bookmark whose title contains the
43 // input. 43 // input.
44 NAVSUGGEST_PERSONALIZED = 17, // A personalized suggestion URL. 44 NAVSUGGEST_PERSONALIZED = 17, // A personalized suggestion URL.
45 SEARCH_SUGGEST_ANSWER = 18, // A short result for a suggested search.
46 NUM_TYPES, 45 NUM_TYPES,
47 }; 46 };
48 47
49 // Converts |type| to a string representation. Used in logging. 48 // Converts |type| to a string representation. Used in logging.
50 static std::string ToString(AutocompleteMatchType::Type type); 49 static std::string ToString(AutocompleteMatchType::Type type);
51 }; 50 };
52 51
53 #endif // COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_ 52 #endif // COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_
OLDNEW
« no previous file with comments | « components/omnibox/autocomplete_match.cc ('k') | components/omnibox/autocomplete_match_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698