Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ |
| 6 #define CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ | 6 #define CHROME_COMMON_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 enum Type { | 13 enum Type { |
| 14 URL_WHAT_YOU_TYPED = 0, // The input as a URL. | 14 URL_WHAT_YOU_TYPED = 0, // The input as a URL. |
|
Peter Kasting
2013/11/05 23:36:58
Why indent all these comments more?
Anuj
2013/11/06 00:18:28
I was about to add SEARCH_SUGGEST_PERSONALIZED too
Peter Kasting
2013/11/06 00:34:26
OK, assuming you do so in this CL.
Anuj
2013/12/09 08:24:56
Done.
| |
| 15 HISTORY_URL, // A past page whose URL contains the input. | 15 HISTORY_URL, // A past page whose URL contains the input. |
| 16 HISTORY_TITLE, // A past page whose title contains the input. | 16 HISTORY_TITLE, // A past page whose title contains the input. |
| 17 HISTORY_BODY, // A past page whose body contains the input. | 17 HISTORY_BODY, // A past page whose body contains the input. |
| 18 HISTORY_KEYWORD, // A past page whose keyword contains the input. | 18 HISTORY_KEYWORD, // A past page whose keyword contains the |
| 19 NAVSUGGEST, // A suggested URL. | 19 // input. |
| 20 SEARCH_WHAT_YOU_TYPED, // The input as a search query (with the default | 20 NAVSUGGEST, // A suggested URL. |
| 21 // engine). | 21 SEARCH_WHAT_YOU_TYPED, // The input as a search query (with the |
| 22 SEARCH_HISTORY, // A past search (with the default engine) | 22 // default engine). |
| 23 // containing the input. | 23 SEARCH_HISTORY, // A past search (with the default engine) |
| 24 SEARCH_SUGGEST, // A suggested search (with the default engine). | 24 // containing the input. |
| 25 SEARCH_OTHER_ENGINE, // A search with a non-default engine. | 25 SEARCH_SUGGEST, // A suggested search (with the default |
| 26 EXTENSION_APP, // An Extension App with a title/url that contains | 26 // engine). |
| 27 // the input. | 27 SEARCH_OTHER_ENGINE, // A search with a non-default engine. |
| 28 CONTACT, // One of the user's contacts. | 28 EXTENSION_APP, // An Extension App with a title/url that |
| 29 BOOKMARK_TITLE, // A bookmark whose title contains the input. | 29 // contains the input. |
| 30 CONTACT, // One of the user's contacts. | |
| 31 BOOKMARK_TITLE, // A bookmark whose title contains the input. | |
| 32 SEARCH_SUGGEST_ENTITY, // A suggested search for an entity. | |
| 33 SEARCH_SUGGEST_INFINITE, // A suggested search to complete the tail of | |
|
Peter Kasting
2013/11/05 23:36:58
Nit: Place these two after SEARCH_SUGGEST. I am p
Anuj
2013/11/06 00:18:28
My understanding of protos and logs is that you do
Peter Kasting
2013/11/06 00:34:26
Which is why I said that the .proto file may have
Anuj
2013/12/09 08:24:56
After consulting with clank team, it is okay to mo
| |
| 34 // the query. | |
| 30 NUM_TYPES, | 35 NUM_TYPES, |
| 31 }; | 36 }; |
| 32 | 37 |
| 33 // Converts |type| to a string representation. Used in logging. | 38 // Converts |type| to a string representation. Used in logging. |
| 34 static std::string ToString(AutocompleteMatchType::Type type); | 39 static std::string ToString(AutocompleteMatchType::Type type); |
| 35 }; | 40 }; |
| 36 | 41 |
| 37 #endif // CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ | 42 #endif // CHROME_COMMON_AUTOCOMPLETE_MATCH_TYPE_H_ |
| OLD | NEW |