| Index: chrome/browser/ui/browser.h
|
| diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h
|
| index 6dd5fd8e70efaacfdeed7d2b92f106ae249a4903..a5004f56122219c5486cf17a3061db129198cc16 100644
|
| --- a/chrome/browser/ui/browser.h
|
| +++ b/chrome/browser/ui/browser.h
|
| @@ -648,10 +648,12 @@ class Browser : public TabStripModelObserver,
|
|
|
| // Overridden from CoreTabHelperDelegate:
|
| // Note that the caller is responsible for deleting |old_tab_contents|.
|
| - virtual void SwapTabContents(TabContents* old_tab_contents,
|
| - TabContents* new_tab_contents) OVERRIDE;
|
| - virtual bool CanReloadContents(TabContents* source) const OVERRIDE;
|
| - virtual bool CanSaveContents(TabContents* source) const OVERRIDE;
|
| + virtual void SwapTabContents(content::WebContents* old_contents,
|
| + content::WebContents* new_contents) OVERRIDE;
|
| + virtual bool CanReloadContents(
|
| + content::WebContents* web_contents) const OVERRIDE;
|
| + virtual bool CanSaveContents(
|
| + content::WebContents* web_contents) const OVERRIDE;
|
|
|
| // Overridden from SearchEngineTabHelperDelegate:
|
| virtual void ConfirmAddSearchProvider(TemplateURL* template_url,
|
|
|