| Index: chrome/browser/autocomplete/shortcuts_provider_unittest.cc
|
| diff --git a/chrome/browser/autocomplete/shortcuts_provider_unittest.cc b/chrome/browser/autocomplete/shortcuts_provider_unittest.cc
|
| index 73699dbd4dbe80fbd2c66957357a15440a913643..9ad05e4118e35c14288c11d68fbd4a5c702ce35b 100644
|
| --- a/chrome/browser/autocomplete/shortcuts_provider_unittest.cc
|
| +++ b/chrome/browser/autocomplete/shortcuts_provider_unittest.cc
|
| @@ -254,6 +254,12 @@ void ShortcutsProviderTest::RunTest(const string16 text,
|
| ac_matches_.end(), AutocompleteMatch::MoreRelevant);
|
| EXPECT_EQ(expected_top_result, ac_matches_[0].destination_url.spec());
|
| }
|
| +
|
| + // No shortcuts matches are allowed to be inlined no matter how highly
|
| + // they score.
|
| + for (ACMatches::const_iterator it = ac_matches_.begin();
|
| + it != ac_matches_.end(); ++it)
|
| + EXPECT_FALSE(it->allowed_to_be_default_match);
|
| }
|
|
|
| TEST_F(ShortcutsProviderTest, SimpleSingleMatch) {
|
|
|