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

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

Issue 377153004: Componentize autocomplete_match_type. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « components/autocomplete.gypi ('k') | components/autocomplete/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 2013 The Chromium Authors. All rights reserved. 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 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_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ 5 #ifndef COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_MATCH_TYPE_H_
6 #define CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ 6 #define COMPONENTS_AUTOCOMPLETE_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 cannot be renumbered. 14 // These values are stored in ShortcutsDatabase and cannot be renumbered.
15 enum Type { 15 enum Type {
16 URL_WHAT_YOU_TYPED = 0, // The input as a URL. 16 URL_WHAT_YOU_TYPED = 0, // The input as a URL.
(...skipping 25 matching lines...) Expand all
42 // input. 42 // input.
43 NAVSUGGEST_PERSONALIZED = 17, // A personalized suggestion URL. 43 NAVSUGGEST_PERSONALIZED = 17, // A personalized suggestion URL.
44 SEARCH_SUGGEST_ANSWER = 18, // A short result for a suggested search. 44 SEARCH_SUGGEST_ANSWER = 18, // A short result for a suggested search.
45 NUM_TYPES, 45 NUM_TYPES,
46 }; 46 };
47 47
48 // Converts |type| to a string representation. Used in logging. 48 // Converts |type| to a string representation. Used in logging.
49 static std::string ToString(AutocompleteMatchType::Type type); 49 static std::string ToString(AutocompleteMatchType::Type type);
50 }; 50 };
51 51
52 #endif // CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ 52 #endif // COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_MATCH_TYPE_H_
OLDNEW
« no previous file with comments | « components/autocomplete.gypi ('k') | components/autocomplete/autocomplete_match_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698