Chromium Code Reviews| 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_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 { |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 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. | |
|
groby-ooo-7-16
2014/12/23 20:15:22
I take it this enum is never persisted?
Justin Donnelly
2014/12/23 21:08:40
I can't say for absolutely certain, but given that
| |
| 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_ |
| OLD | NEW |