diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-15 23:28:19 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-15 23:28:19 +0000 |
commit | c9bd2e8e19e8c5891d68e99b4c610c04a62046a0 (patch) | |
tree | 689e7d832227bd431aadd4698807edb246030fc8 /chrome/browser/ui/cocoa/html_dialog_window_controller.mm | |
parent | 97e521cba140ce053f33dd3e852e847c76781689 (diff) | |
download | chromium_src-c9bd2e8e19e8c5891d68e99b4c610c04a62046a0.zip chromium_src-c9bd2e8e19e8c5891d68e99b4c610c04a62046a0.tar.gz chromium_src-c9bd2e8e19e8c5891d68e99b4c610c04a62046a0.tar.bz2 |
Remove the TabContentsDelegate::ToolbarSizeChanged() method as no one was using it. Rename BrowserWindow::SelectedTabToolbarSizeChanged() to ToolbarSizeChanged() as there are no per-tab toolbars since we made the DownloadShelf per-window a while ago.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6870002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/cocoa/html_dialog_window_controller.mm')
-rw-r--r-- | chrome/browser/ui/cocoa/html_dialog_window_controller.mm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/ui/cocoa/html_dialog_window_controller.mm b/chrome/browser/ui/cocoa/html_dialog_window_controller.mm index 3b2d026..67c9537 100644 --- a/chrome/browser/ui/cocoa/html_dialog_window_controller.mm +++ b/chrome/browser/ui/cocoa/html_dialog_window_controller.mm @@ -48,7 +48,6 @@ public: // HtmlDialogTabContentsDelegate declarations. virtual void MoveContents(TabContents* source, const gfx::Rect& pos); - virtual void ToolbarSizeChanged(TabContents* source, bool is_animating); virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event); private: @@ -171,11 +170,6 @@ void HtmlDialogWindowDelegateBridge::MoveContents(TabContents* source, // TODO(akalin): Actually set the window bounds. } -void HtmlDialogWindowDelegateBridge::ToolbarSizeChanged( - TabContents* source, bool is_animating) { - // TODO(akalin): Figure out what to do here. -} - // A simplified version of BrowserWindowCocoa::HandleKeyboardEvent(). // We don't handle global keyboard shortcuts here, but that's fine since // they're all browser-specific. (This may change in the future.) |