diff options
author | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 00:33:33 +0000 |
---|---|---|
committer | jianli@chromium.org <jianli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-07 00:33:33 +0000 |
commit | 0548c535089c52b722990abf03f3df375499034d (patch) | |
tree | 7b87e1b8e0dc8d1f705727f5e30599680cfe894f /chrome/browser/notifications | |
parent | e7a2d749e769e50d1b9aa8114620cc839715c7e2 (diff) | |
download | chromium_src-0548c535089c52b722990abf03f3df375499034d.zip chromium_src-0548c535089c52b722990abf03f3df375499034d.tar.gz chromium_src-0548c535089c52b722990abf03f3df375499034d.tar.bz2 |
Make panel adjust bounds per preferred size change notification on Windows.
BUG=none
TEST=new browser test
Review URL: http://codereview.chromium.org/7537030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99880 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications')
-rw-r--r-- | chrome/browser/notifications/balloon_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/notifications/balloon_host.h b/chrome/browser/notifications/balloon_host.h index bc55201..921fbb0 100644 --- a/chrome/browser/notifications/balloon_host.h +++ b/chrome/browser/notifications/balloon_host.h @@ -63,6 +63,7 @@ class BalloonHost : public RenderViewHostDelegate, virtual void HandleMouseDown() OVERRIDE; virtual RendererPreferences GetRendererPrefs( content::BrowserContext* browser_context) const OVERRIDE; + virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE; // RenderViewHostDelegate::View methods. Only the ones for opening new // windows are currently implemented. @@ -93,7 +94,6 @@ class BalloonHost : public RenderViewHostDelegate, virtual void UpdateDragCursor(WebKit::WebDragOperation operation) OVERRIDE {} virtual void GotFocus() OVERRIDE {} virtual void TakeFocus(bool reverse) OVERRIDE {} - virtual void UpdatePreferredSize(const gfx::Size& pref_size) OVERRIDE; // Enable Web UI. This has to be called before renderer is created. void EnableWebUI(); |