| Index: chrome/browser/autocomplete/base_search_provider.h
|
| diff --git a/chrome/browser/autocomplete/base_search_provider.h b/chrome/browser/autocomplete/base_search_provider.h
|
| index 108355502a5657e73fcfc122a848f03efffad3ba..341762e58a26f964e3e399a5399a0697b00afd24 100644
|
| --- a/chrome/browser/autocomplete/base_search_provider.h
|
| +++ b/chrome/browser/autocomplete/base_search_provider.h
|
| @@ -135,10 +135,6 @@ class BaseSearchProvider : public AutocompleteProvider,
|
|
|
| const std::string& deletion_url() const { return deletion_url_; }
|
|
|
| - // Returns if this result is inlineable against the current input |input|.
|
| - // Non-inlineable results are stale.
|
| - virtual bool IsInlineable(const base::string16& input) const = 0;
|
| -
|
| // Returns the default relevance value for this result (which may
|
| // be left over from a previous omnibox input) given the current
|
| // input and whether the current input caused a keyword provider
|
| @@ -213,7 +209,6 @@ class BaseSearchProvider : public AutocompleteProvider,
|
| const base::string16& input_text);
|
|
|
| // Result:
|
| - virtual bool IsInlineable(const base::string16& input) const OVERRIDE;
|
| virtual int CalculateRelevance(
|
| const AutocompleteInput& input,
|
| bool keyword_provider_requested) const OVERRIDE;
|
| @@ -276,7 +271,6 @@ class BaseSearchProvider : public AutocompleteProvider,
|
| const std::string& languages);
|
|
|
| // Result:
|
| - virtual bool IsInlineable(const base::string16& input) const OVERRIDE;
|
| virtual int CalculateRelevance(
|
| const AutocompleteInput& input,
|
| bool keyword_provider_requested) const OVERRIDE;
|
|
|