| Index: chrome/browser/autocomplete/base_search_provider.cc
|
| diff --git a/chrome/browser/autocomplete/base_search_provider.cc b/chrome/browser/autocomplete/base_search_provider.cc
|
| index 22eb27f72e83cf05657a3d05aa24fc1e6ebe438d..c42d05b632f28378e487183605924bbb49faa51f 100644
|
| --- a/chrome/browser/autocomplete/base_search_provider.cc
|
| +++ b/chrome/browser/autocomplete/base_search_provider.cc
|
| @@ -338,11 +338,6 @@ void BaseSearchProvider::SuggestResult::ClassifyMatchContents(
|
| }
|
| }
|
|
|
| -bool BaseSearchProvider::SuggestResult::IsInlineable(
|
| - const base::string16& input) const {
|
| - return StartsWith(suggestion_, input, false);
|
| -}
|
| -
|
| int BaseSearchProvider::SuggestResult::CalculateRelevance(
|
| const AutocompleteInput& input,
|
| bool keyword_provider_requested) const {
|
| @@ -418,12 +413,6 @@ void BaseSearchProvider::NavigationResult::CalculateAndClassifyMatchContents(
|
| }
|
| }
|
|
|
| -bool BaseSearchProvider::NavigationResult::IsInlineable(
|
| - const base::string16& input) const {
|
| - return
|
| - URLPrefix::BestURLPrefix(base::UTF8ToUTF16(url_.spec()), input) != NULL;
|
| -}
|
| -
|
| int BaseSearchProvider::NavigationResult::CalculateRelevance(
|
| const AutocompleteInput& input,
|
| bool keyword_provider_requested) const {
|
|
|