summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_window.h
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-30 03:47:26 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-30 03:47:26 +0000
commitd8f16ae0347635889c104a48269805c01901fc05 (patch)
tree1deca02651c41be9b227acf6509d0a1f2daac5b9 /chrome/browser/browser_window.h
parentd35d5c76b7d09200bab91116ac19ce2c40adcb18 (diff)
downloadchromium_src-d8f16ae0347635889c104a48269805c01901fc05.zip
chromium_src-d8f16ae0347635889c104a48269805c01901fc05.tar.gz
chromium_src-d8f16ae0347635889c104a48269805c01901fc05.tar.bz2
Experiment with dislodging the Extension Shelf and having it only appear on the New Tab page.
BUG=http://crbug.com/20415 TEST=With the extension toolstrip visible, go to the New Tab page and press Ctrl + Alt + B. Watch the toolstrip merge into the New Tab page and back again into a separate toolstrip (when you press Ctrl + Alt + B again). Also, when you do this on a regular webpage (as opposed to NTP) this should toggle the toolstrip visiblity. Review URL: http://codereview.chromium.org/175017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24864 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_window.h')
-rw-r--r--chrome/browser/browser_window.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/browser_window.h b/chrome/browser/browser_window.h
index a1dbe76..4a5c5ac 100644
--- a/chrome/browser/browser_window.h
+++ b/chrome/browser/browser_window.h
@@ -75,6 +75,9 @@ class BrowserWindow {
// BrowserView.
virtual void SelectedTabToolbarSizeChanged(bool is_animating) = 0;
+ // Notification for the Extension Shelf changing its size.
+ virtual void SelectedTabExtensionShelfSizeChanged() = 0;
+
// Inform the frame that the selected tab favicon or title has changed. Some
// frames may need to refresh their title bar.
virtual void UpdateTitleBar() = 0;
@@ -147,6 +150,9 @@ class BrowserWindow {
// Shows or hides the bookmark bar depending on its current visibility.
virtual void ToggleBookmarkBar() = 0;
+ // Shows or hides the extension shelf depending on its current visibility.
+ virtual void ToggleExtensionShelf() = 0;
+
// Shows the About Chrome dialog box.
virtual void ShowAboutChromeDialog() = 0;