| Index: chrome/browser/ui/panels/panel_browser_window.h
|
| diff --git a/chrome/browser/ui/panels/panel_browser_window.h b/chrome/browser/ui/panels/panel_browser_window.h
|
| index 9c9126d9ac5941d17ebc4641bb1d69c8ab96edda..da4539b441faa3a69c551c2cb96b9041472789f6 100644
|
| --- a/chrome/browser/ui/panels/panel_browser_window.h
|
| +++ b/chrome/browser/ui/panels/panel_browser_window.h
|
| @@ -75,7 +75,7 @@ class PanelBrowserWindow : public BrowserWindow,
|
| virtual LocationBar* GetLocationBar() const OVERRIDE;
|
| virtual void SetFocusToLocationBar(bool select_all) OVERRIDE;
|
| virtual void UpdateReloadStopState(bool is_loading, bool force) OVERRIDE;
|
| - virtual void UpdateToolbar(TabContentsWrapper* contents,
|
| + virtual void UpdateToolbar(TabContents* contents,
|
| bool should_restore_state) OVERRIDE;
|
| virtual void FocusToolbar() OVERRIDE;
|
| virtual void FocusAppMenu() OVERRIDE;
|
| @@ -113,7 +113,7 @@ class PanelBrowserWindow : public BrowserWindow,
|
| const content::SSLStatus& ssl,
|
| bool show_history) OVERRIDE;
|
| virtual void ShowWebsiteSettings(Profile* profile,
|
| - TabContentsWrapper* tab_contents_wrapper,
|
| + TabContents* tab_contents,
|
| const GURL& url,
|
| const content::SSLStatus& ssl,
|
| bool show_history) OVERRIDE;
|
| @@ -124,7 +124,7 @@ class PanelBrowserWindow : public BrowserWindow,
|
| virtual void HandleKeyboardEvent(
|
| const content::NativeWebKeyboardEvent& event) OVERRIDE;
|
| virtual void ShowCreateWebAppShortcutsDialog(
|
| - TabContentsWrapper* tab_contents) OVERRIDE;
|
| + TabContents* tab_contents) OVERRIDE;
|
| virtual void ShowCreateChromeAppShortcutsDialog(
|
| Profile* profile, const extensions::Extension* app) OVERRIDE;
|
| virtual void Cut() OVERRIDE;
|
| @@ -138,7 +138,7 @@ class PanelBrowserWindow : public BrowserWindow,
|
| virtual void ExitPresentationMode() OVERRIDE;
|
| virtual bool InPresentationMode() OVERRIDE;
|
| #endif
|
| - virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE;
|
| + virtual void ShowInstant(TabContents* preview) OVERRIDE;
|
| virtual void HideInstant() OVERRIDE;
|
| virtual gfx::Rect GetInstantBounds() OVERRIDE;
|
| virtual WindowOpenDisposition GetDispositionForPopupBounds(
|
| @@ -151,7 +151,7 @@ class PanelBrowserWindow : public BrowserWindow,
|
| virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE;
|
|
|
| // TabStripModelObserver overrides.
|
| - virtual void TabInsertedAt(TabContentsWrapper* contents,
|
| + virtual void TabInsertedAt(TabContents* contents,
|
| int index,
|
| bool foreground) OVERRIDE;
|
|
|
|
|