| Index: chrome/renderer/searchbox/searchbox.h
|
| diff --git a/chrome/renderer/searchbox/searchbox.h b/chrome/renderer/searchbox/searchbox.h
|
| index 4b908a0b61835e637e89567c9f0e4c419d97f31d..595e9a281e0cb5b305ec441213c470f40e1d8e2d 100644
|
| --- a/chrome/renderer/searchbox/searchbox.h
|
| +++ b/chrome/renderer/searchbox/searchbox.h
|
| @@ -132,7 +132,6 @@ class SearchBox : public content::RenderViewObserver,
|
| bool is_focused() const { return is_focused_; }
|
| bool is_input_in_progress() const { return is_input_in_progress_; }
|
| bool is_key_capture_enabled() const { return is_key_capture_enabled_; }
|
| - bool display_instant_results() const { return display_instant_results_; }
|
| const base::string16& query() const { return query_; }
|
| const InstantSuggestion& suggestion() const { return suggestion_; }
|
|
|
| @@ -150,7 +149,6 @@ class SearchBox : public content::RenderViewObserver,
|
| void OnHistorySyncCheckResult(bool sync_history);
|
| void OnMostVisitedChanged(
|
| const std::vector<InstantMostVisitedItem>& items);
|
| - void OnSetDisplayInstantResults(bool display_instant_results);
|
| void OnSetInputInProgress(bool input_in_progress);
|
| void OnSetSuggestionToPrefetch(const InstantSuggestion& suggestion);
|
| void OnSubmit(const base::string16& query,
|
| @@ -170,7 +168,6 @@ class SearchBox : public content::RenderViewObserver,
|
| bool is_focused_;
|
| bool is_input_in_progress_;
|
| bool is_key_capture_enabled_;
|
| - bool display_instant_results_;
|
| InstantRestrictedIDCache<InstantMostVisitedItem> most_visited_items_cache_;
|
| ThemeBackgroundInfo theme_info_;
|
| base::string16 query_;
|
|
|