| Index: components/omnibox/browser/autocomplete_result.h
|
| diff --git a/components/omnibox/browser/autocomplete_result.h b/components/omnibox/browser/autocomplete_result.h
|
| index 499d97d5f5ce44e8cef9aac76e7ab7d322df78d1..95b0b5e9fa2899b36a40ee2bd1870017aa87f997 100644
|
| --- a/components/omnibox/browser/autocomplete_result.h
|
| +++ b/components/omnibox/browser/autocomplete_result.h
|
| @@ -59,7 +59,7 @@ class AutocompleteResult {
|
| };
|
|
|
| // Max number of matches we'll show from the various providers.
|
| - static const size_t kMaxMatches;
|
| + static size_t GetMaxMatches();
|
|
|
| AutocompleteResult();
|
| ~AutocompleteResult();
|
| @@ -77,7 +77,7 @@ class AutocompleteResult {
|
| const ACMatches& matches);
|
|
|
| // Removes duplicates, puts the list in sorted order and culls to leave only
|
| - // the best kMaxMatches matches. Sets the default match to the best match
|
| + // the best GetMaxMatches() matches. Sets the default match to the best match
|
| // and updates the alternate nav URL.
|
| void SortAndCull(const AutocompleteInput& input,
|
| TemplateURLService* template_url_service);
|
|
|