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_H_ | 5 #ifndef COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_H_ |
6 #define COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_H_ | 6 #define COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "components/omnibox/autocomplete_match_type.h" | 13 #include "components/omnibox/autocomplete_match_type.h" |
14 #include "components/search_engines/template_url.h" | 14 #include "components/search_engines/template_url.h" |
15 #include "ui/base/page_transition_types.h" | 15 #include "ui/base/page_transition_types.h" |
16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
17 | 17 |
18 class AutocompleteProvider; | 18 class AutocompleteProvider; |
19 class SuggestionAnswer; | |
19 class TemplateURL; | 20 class TemplateURL; |
20 class TemplateURLService; | 21 class TemplateURLService; |
21 | 22 |
22 namespace base { | 23 namespace base { |
23 class Time; | 24 class Time; |
24 } // namespace base | 25 } // namespace base |
25 | 26 |
26 const char kACMatchPropertyInputText[] = "input text"; | 27 const char kACMatchPropertyInputText[] = "input text"; |
27 const char kACMatchPropertyContentsPrefix[] = "match contents prefix"; | 28 const char kACMatchPropertyContentsPrefix[] = "match contents prefix"; |
28 const char kACMatchPropertyContentsStartIndex[] = "match contents start index"; | 29 const char kACMatchPropertyContentsStartIndex[] = "match contents start index"; |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
311 | 312 |
312 // The main text displayed in the address bar dropdown. | 313 // The main text displayed in the address bar dropdown. |
313 base::string16 contents; | 314 base::string16 contents; |
314 ACMatchClassifications contents_class; | 315 ACMatchClassifications contents_class; |
315 | 316 |
316 // Additional helper text for each entry, such as a title or description. | 317 // Additional helper text for each entry, such as a title or description. |
317 base::string16 description; | 318 base::string16 description; |
318 ACMatchClassifications description_class; | 319 ACMatchClassifications description_class; |
319 | 320 |
320 // A rich-format version of the display for the dropdown. | 321 // A rich-format version of the display for the dropdown. |
321 base::string16 answer_contents; | 322 base::string16 answer_contents; |
groby-ooo-7-16
2014/10/21 00:35:54
Since we make answer optional, I think we should p
Justin Donnelly
2014/10/21 21:43:54
Agreed. Once I update Clank to use the new type,
| |
322 base::string16 answer_type; | 323 base::string16 answer_type; |
324 scoped_ptr<SuggestionAnswer> answer; | |
323 | 325 |
324 // The transition type to use when the user opens this match. By default | 326 // The transition type to use when the user opens this match. By default |
325 // this is TYPED. Providers whose matches do not look like URLs should set | 327 // this is TYPED. Providers whose matches do not look like URLs should set |
326 // it to GENERATED. | 328 // it to GENERATED. |
327 ui::PageTransition transition; | 329 ui::PageTransition transition; |
328 | 330 |
329 // True when this match is the "what you typed" match from the history | 331 // True when this match is the "what you typed" match from the history |
330 // system. | 332 // system. |
331 bool is_history_what_you_typed_match; | 333 bool is_history_what_you_typed_match; |
332 | 334 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
380 const base::string16& text, | 382 const base::string16& text, |
381 const ACMatchClassifications& classifications) const; | 383 const ACMatchClassifications& classifications) const; |
382 #endif | 384 #endif |
383 }; | 385 }; |
384 | 386 |
385 typedef AutocompleteMatch::ACMatchClassification ACMatchClassification; | 387 typedef AutocompleteMatch::ACMatchClassification ACMatchClassification; |
386 typedef std::vector<ACMatchClassification> ACMatchClassifications; | 388 typedef std::vector<ACMatchClassification> ACMatchClassifications; |
387 typedef std::vector<AutocompleteMatch> ACMatches; | 389 typedef std::vector<AutocompleteMatch> ACMatches; |
388 | 390 |
389 #endif // COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_H_ | 391 #endif // COMPONENTS_OMNIBOX_AUTOCOMPLETE_MATCH_H_ |
OLD | NEW |