OLD | NEW |
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_AUTOCOMPLETE_AUTOCOMPLETE_MATCH_TYPE_H_ | 5 #ifndef COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_ |
6 #define COMPONENTS_AUTOCOMPLETE_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() |
15 // and cannot be renumbered. | 15 // and cannot be renumbered. |
16 enum Type { | 16 enum Type { |
(...skipping 26 matching lines...) Expand all Loading... |
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. | 45 SEARCH_SUGGEST_ANSWER = 18, // A short result for a suggested search. |
46 NUM_TYPES, | 46 NUM_TYPES, |
47 }; | 47 }; |
48 | 48 |
49 // Converts |type| to a string representation. Used in logging. | 49 // Converts |type| to a string representation. Used in logging. |
50 static std::string ToString(AutocompleteMatchType::Type type); | 50 static std::string ToString(AutocompleteMatchType::Type type); |
51 }; | 51 }; |
52 | 52 |
53 #endif // COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_MATCH_TYPE_H_ | 53 #endif // COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_TYPE_H_ |
OLD | NEW |