| Index: chrome/browser/autocomplete/history_url_provider_unittest.cc
|
| diff --git a/chrome/browser/autocomplete/history_url_provider_unittest.cc b/chrome/browser/autocomplete/history_url_provider_unittest.cc
|
| index 45caf467bb12c8715cdef023cb39302606b805ff..15cfe54d6e821e4927b2ddb330ed809750a9f6c9 100644
|
| --- a/chrome/browser/autocomplete/history_url_provider_unittest.cc
|
| +++ b/chrome/browser/autocomplete/history_url_provider_unittest.cc
|
| @@ -670,14 +670,14 @@ TEST_F(HistoryURLProviderTest, IntranetURLsWithRefs) {
|
| int relevance;
|
| AutocompleteInput::Type type;
|
| } test_cases[] = {
|
| - { "gooey", 1410, AutocompleteInput::UNKNOWN },
|
| - { "gooey/", 1410, AutocompleteInput::URL },
|
| - { "gooey#", 1200, AutocompleteInput::UNKNOWN },
|
| - { "gooey/#", 1200, AutocompleteInput::URL },
|
| - { "gooey#foo", 1200, AutocompleteInput::UNKNOWN },
|
| - { "gooey/#foo", 1200, AutocompleteInput::URL },
|
| - { "gooey# foo", 1200, AutocompleteInput::UNKNOWN },
|
| - { "gooey/# foo", 1200, AutocompleteInput::URL },
|
| + { "gooey", 1410, metrics::OmniboxInputType::UNKNOWN },
|
| + { "gooey/", 1410, metrics::OmniboxInputType::URL },
|
| + { "gooey#", 1200, metrics::OmniboxInputType::UNKNOWN },
|
| + { "gooey/#", 1200, metrics::OmniboxInputType::URL },
|
| + { "gooey#foo", 1200, metrics::OmniboxInputType::UNKNOWN },
|
| + { "gooey/#foo", 1200, metrics::OmniboxInputType::URL },
|
| + { "gooey# foo", 1200, metrics::OmniboxInputType::UNKNOWN },
|
| + { "gooey/# foo", 1200, metrics::OmniboxInputType::URL },
|
| };
|
| for (size_t i = 0; i < ARRAYSIZE_UNSAFE(test_cases); ++i) {
|
| SCOPED_TRACE(test_cases[i].input);
|
|
|