| Index: chrome/browser/ui/browser.h
|
| diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
|
| index 2544bfc8f8f3ac38ed7c2e2bf9e64780ab84206a..ccb83b95b254ae4e6d10dd965459318a69a4d3b0 100644
|
| --- a/chrome/browser/ui/browser.h
|
| +++ b/chrome/browser/ui/browser.h
|
| @@ -25,6 +25,7 @@
|
| #include "chrome/browser/ui/browser_navigator.h"
|
| #include "chrome/browser/ui/chrome_web_modal_dialog_manager_delegate.h"
|
| #include "chrome/browser/ui/host_desktop.h"
|
| +#include "chrome/browser/ui/search/search_tab_helper_delegate.h"
|
| #include "chrome/browser/ui/search_engines/search_engine_tab_helper_delegate.h"
|
| #include "chrome/browser/ui/tab_contents/core_tab_helper_delegate.h"
|
| #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
|
| @@ -97,6 +98,7 @@ class Browser : public TabStripModelObserver,
|
| public content::WebContentsDelegate,
|
| public CoreTabHelperDelegate,
|
| public SearchEngineTabHelperDelegate,
|
| + public SearchTabHelperDelegate,
|
| public ChromeWebModalDialogManagerDelegate,
|
| public BookmarkTabHelperDelegate,
|
| public ZoomObserver,
|
| @@ -353,11 +355,6 @@ class Browser : public TabStripModelObserver,
|
| // Invoked when visible SSL state (as defined by SSLStatus) changes.
|
| void VisibleSSLStateChanged(content::WebContents* web_contents);
|
|
|
| - // Invoked when the |web_contents| no longer supports Instant. Refreshes the
|
| - // omnibox so it no longer shows search terms.
|
| - void OnWebContentsInstantSupportDisabled(
|
| - const content::WebContents* web_contents);
|
| -
|
| // Assorted browser commands ////////////////////////////////////////////////
|
|
|
| // NOTE: Within each of the following sections, the IDs are ordered roughly by
|
| @@ -662,6 +659,16 @@ class Browser : public TabStripModelObserver,
|
| virtual void ConfirmAddSearchProvider(TemplateURL* template_url,
|
| Profile* profile) OVERRIDE;
|
|
|
| + // Overridden from SearchTabHelperDelegate:
|
| + virtual void NavigateOnThumbnailClick(
|
| + const GURL& url,
|
| + WindowOpenDisposition disposition,
|
| + content::WebContents* source_contents) OVERRIDE;
|
| + virtual void OnWebContentsInstantSupportDisabled(
|
| + const content::WebContents* web_contents) OVERRIDE;
|
| + virtual OmniboxView* GetOmniboxView() OVERRIDE;
|
| + virtual std::set<std::string> GetOpenUrls() OVERRIDE;
|
| +
|
| // Overridden from WebContentsModalDialogManagerDelegate:
|
| virtual void SetWebContentsBlocked(content::WebContents* web_contents,
|
| bool blocked) OVERRIDE;
|
|
|