summaryrefslogtreecommitdiffstats
path: root/chrome/browser/notifications/balloon.cc
diff options
context:
space:
mode:
authorlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-25 09:14:26 +0000
committerlevin@chromium.org <levin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-25 09:14:26 +0000
commit99c1e2e11855ba759129418fa5752cebdadb033c (patch)
treec36596aa65f99fa2ecc55ae368f2d57382f3bf59 /chrome/browser/notifications/balloon.cc
parentf215b6947acb9d8ab9475b240187ccb1f31cfc3f (diff)
downloadchromium_src-99c1e2e11855ba759129418fa5752cebdadb033c.zip
chromium_src-99c1e2e11855ba759129418fa5752cebdadb033c.tar.gz
chromium_src-99c1e2e11855ba759129418fa5752cebdadb033c.tar.bz2
Make it so that notifications only start resizing after the first paint is done.
Also, only allow them to grow. BUG=56693 TEST=Ran many tests manually. Automated test in progress (before closing the bug). Review URL: http://codereview.chromium.org/5331006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67396 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications/balloon.cc')
-rw-r--r--chrome/browser/notifications/balloon.cc12
1 files changed, 11 insertions, 1 deletions
diff --git a/chrome/browser/notifications/balloon.cc b/chrome/browser/notifications/balloon.cc
index 96f3fca..b5431c7 100644
--- a/chrome/browser/notifications/balloon.cc
+++ b/chrome/browser/notifications/balloon.cc
@@ -9,6 +9,7 @@
#include "chrome/browser/notifications/notification.h"
#include "chrome/browser/renderer_host/site_instance.h"
#include "gfx/rect.h"
+#include "gfx/size.h"
Balloon::Balloon(const Notification& notification, Profile* profile,
BalloonCollection* collection)
@@ -27,7 +28,16 @@ void Balloon::SetPosition(const gfx::Point& upper_left, bool reposition) {
}
void Balloon::SetContentPreferredSize(const gfx::Size& size) {
- collection_->ResizeBalloon(this, size);
+ gfx::Size new_size(size);
+ // Only allow the size of notifications to grow. This stops the balloon
+ // from jumping between sizes due to dynamic content. For example, the
+ // balloon's contents may adjust due to changes in
+ // document.body.clientHeight.
+ new_size.set_height(std::max(new_size.height(), content_size_.height()));
+
+ if (content_size_ == new_size)
+ return;
+ collection_->ResizeBalloon(this, new_size);
}
void Balloon::set_view(BalloonView* balloon_view) {