| Index: chrome/renderer/searchbox/searchbox.cc
|
| diff --git a/chrome/renderer/searchbox/searchbox.cc b/chrome/renderer/searchbox/searchbox.cc
|
| index a4f64a0aebf86266d87b3bdaa3bbb66ae4a70b79..098558e8a517da1a00c98c0667e011151a0588f5 100644
|
| --- a/chrome/renderer/searchbox/searchbox.cc
|
| +++ b/chrome/renderer/searchbox/searchbox.cc
|
| @@ -238,7 +238,6 @@ SearchBox::SearchBox(content::RenderView* render_view)
|
| is_focused_(false),
|
| is_input_in_progress_(false),
|
| is_key_capture_enabled_(false),
|
| - display_instant_results_(false),
|
| most_visited_items_cache_(kMaxInstantMostVisitedItemCacheSize),
|
| query_() {
|
| }
|
| @@ -371,8 +370,6 @@ bool SearchBox::OnMessageReceived(const IPC::Message& message) {
|
| IPC_MESSAGE_HANDLER(ChromeViewMsg_SearchBoxFocusChanged, OnFocusChanged)
|
| IPC_MESSAGE_HANDLER(ChromeViewMsg_SearchBoxMostVisitedItemsChanged,
|
| OnMostVisitedChanged)
|
| - IPC_MESSAGE_HANDLER(ChromeViewMsg_SearchBoxSetDisplayInstantResults,
|
| - OnSetDisplayInstantResults)
|
| IPC_MESSAGE_HANDLER(ChromeViewMsg_SearchBoxSetInputInProgress,
|
| OnSetInputInProgress)
|
| IPC_MESSAGE_HANDLER(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch,
|
| @@ -462,10 +459,6 @@ void SearchBox::OnMostVisitedChanged(
|
| }
|
| }
|
|
|
| -void SearchBox::OnSetDisplayInstantResults(bool display_instant_results) {
|
| - display_instant_results_ = display_instant_results;
|
| -}
|
| -
|
| void SearchBox::OnSetInputInProgress(bool is_input_in_progress) {
|
| if (is_input_in_progress_ != is_input_in_progress) {
|
| is_input_in_progress_ = is_input_in_progress;
|
|
|