Chromium Code Reviews| Index: chrome/browser/autocomplete/autocomplete_result.h |
| diff --git a/chrome/browser/autocomplete/autocomplete_result.h b/chrome/browser/autocomplete/autocomplete_result.h |
| index 68b5096e32883123f00bea6f51905acb1751c33d..75ee6dc8c70e811a7393dcf146887a1efdf0a8ac 100644 |
| --- a/chrome/browser/autocomplete/autocomplete_result.h |
| +++ b/chrome/browser/autocomplete/autocomplete_result.h |
| @@ -12,6 +12,7 @@ |
| #include "base/basictypes.h" |
| #include "chrome/browser/autocomplete/autocomplete_input.h" |
| #include "chrome/browser/autocomplete/autocomplete_match.h" |
| +#include "components/metrics/proto/omnibox_event.pb.h" |
| #include "url/gurl.h" |
| class AutocompleteInput; |
|
Mark P
2014/06/20 00:08:29
This isn't necessary if we're including autocomple
Jun Mukai
2014/06/20 00:29:51
Done.
|
| @@ -150,7 +151,7 @@ class AutocompleteResult { |
| // |set_duplicate_matches| is true, the duplicate matches are stored in the |
| // |duplicate_matches| vector of the corresponding AutocompleteMatch. |
| static void DedupMatchesByDestination( |
| - AutocompleteInput::PageClassification page_classification, |
| + metrics::OmniboxEventProto::PageClassification page_classification, |
| bool set_duplicate_matches, |
| ACMatches* matches); |
| @@ -181,7 +182,7 @@ class AutocompleteResult { |
| // Copies matches into this result. |old_matches| gives the matches from the |
| // last result, and |new_matches| the results from this result. |
| void MergeMatchesByProvider( |
| - AutocompleteInput::PageClassification page_classification, |
| + metrics::OmniboxEventProto::PageClassification page_classification, |
| const ACMatches& old_matches, |
| const ACMatches& new_matches); |