| Index: content/browser/tab_contents/tab_contents.cc
|
| diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
|
| index 328a051b2023478f7a74dda794b8b61302e3a75c..182a20bcee66d423eab25881b9d6e507f15ef16b 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -431,9 +431,6 @@ bool TabContents::OnMessageReceived(const IPC::Message& message) {
|
| OnInstallApplication)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_PageContents, OnPageContents)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_PageTranslated, OnPageTranslated)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_SetSuggestions, OnSetSuggestions)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_InstantSupportDetermined,
|
| - OnInstantSupportDetermined)
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP_EX()
|
|
|
| @@ -1958,19 +1955,6 @@ void TabContents::OnPageTranslated(int32 page_id,
|
| Details<PageTranslatedDetails>(&details));
|
| }
|
|
|
| -void TabContents::OnSetSuggestions(
|
| - int32 page_id,
|
| - const std::vector<std::string>& suggestions,
|
| - InstantCompleteBehavior behavior) {
|
| - if (delegate())
|
| - delegate()->OnSetSuggestions(page_id, suggestions, behavior);
|
| -}
|
| -
|
| -void TabContents::OnInstantSupportDetermined(int32 page_id, bool result) {
|
| - if (delegate())
|
| - delegate()->OnInstantSupportDetermined(page_id, result);
|
| -}
|
| -
|
| void TabContents::OnContentSettingsAccessed(bool content_was_blocked) {
|
| if (delegate_)
|
| delegate_->OnContentSettingsChange(this);
|
|
|