diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 20:14:27 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 20:14:27 +0000 |
commit | 6b723f8690dcdbdc4071a235aa67483dc18de329 (patch) | |
tree | c0d3b2f787bdef1927674687d9639cbea5dc3143 /chrome/browser/browser_window.h | |
parent | 9929dbb542aa4a8531ea4d9eadbb43b99d13f846 (diff) | |
download | chromium_src-6b723f8690dcdbdc4071a235aa67483dc18de329.zip chromium_src-6b723f8690dcdbdc4071a235aa67483dc18de329.tar.gz chromium_src-6b723f8690dcdbdc4071a235aa67483dc18de329.tar.bz2 |
Renames and moves match preview classes to instant. This doesn't
contain any changes other than renaming/moving, as such I'm TBRing.
BUG=54833
TEST=none
TBR=jcivelli@chromium.org
Review URL: http://codereview.chromium.org/3602015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61553 0039d316-1c4b-4281-b951-d872f2087c98
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); |