diff options
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r-- | chrome/browser/browser_window.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h index aa109c5..f14d719 100644 --- a/chrome/browser/browser_window.h +++ b/chrome/browser/browser_window.h @@ -312,16 +312,16 @@ class BrowserWindow { virtual void OpenTabpose() = 0; #endif - // Invoked when the match preview's tab contents should be shown. - virtual void ShowMatchPreview(TabContents* preview_contents) = 0; + // Invoked when instant's tab contents should be shown. + virtual void ShowInstant(TabContents* preview_contents) = 0; - // Invoked when the match preview's tab contents should be hidden. - virtual void HideMatchPreview() = 0; + // Invoked when the instant's tab contents should be hidden. + virtual void HideInstant() = 0; - // Returns the desired bounds for match preview in screen coordinates. Note - // that if match preview isn't currently visible this returns the bounds the - // match preview would be placed at. - virtual gfx::Rect GetMatchPreviewBounds() = 0; + // Returns the desired bounds for instant in screen coordinates. Note that if + // instant isn't currently visible this returns the bounds instant would be + // placed at. + virtual gfx::Rect GetInstantBounds() = 0; // Construct a BrowserWindow implementation for the specified |browser|. static BrowserWindow* CreateBrowserWindow(Browser* browser); |