diff options
author | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-15 18:02:30 +0000 |
---|---|---|
committer | beng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-15 18:02:30 +0000 |
commit | 154f8bcac65142d7ae6733204c15ae52cfa320c6 (patch) | |
tree | d7375c1119946c2914ee79ef2c0e8aa195b1fbe9 /chrome/browser/views/download_started_animation.cc | |
parent | 8144d0cea4e142ff7d7a75c84240a4bb8a7fb3a4 (diff) | |
download | chromium_src-154f8bcac65142d7ae6733204c15ae52cfa320c6.zip chromium_src-154f8bcac65142d7ae6733204c15ae52cfa320c6.tar.gz chromium_src-154f8bcac65142d7ae6733204c15ae52cfa320c6.tar.bz2 |
Convert GetPreferredSize from:
void GetPreferredSize(CSize* out);
to:
gfx::Size GetPreferredSize();
.. and update some other places to use gfx::Size as well.
http://crbug.com/2186
Review URL: http://codereview.chromium.org/7344
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3400 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/download_started_animation.cc')
-rw-r--r-- | chrome/browser/views/download_started_animation.cc | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/views/download_started_animation.cc b/chrome/browser/views/download_started_animation.cc index d038372..f95b13c 100644 --- a/chrome/browser/views/download_started_animation.cc +++ b/chrome/browser/views/download_started_animation.cc @@ -63,12 +63,13 @@ void DownloadStartedAnimation::Reposition() { // Align the image with the bottom left of the web contents (so that it // points to the newly created download). - CSize size; - GetPreferredSize(&size); - popup_->MoveWindow(tab_contents_bounds_.x(), - static_cast<int>(tab_contents_bounds_.bottom() - size.cy - - size.cy * (1 - GetCurrentValue())), - size.cx, size.cy); + gfx::Size size = GetPreferredSize(); + popup_->MoveWindow( + tab_contents_bounds_.x(), + static_cast<int>(tab_contents_bounds_.bottom() - + size.height() - size.height() * (1 - GetCurrentValue())), + size.width(), + size.height()); } void DownloadStartedAnimation::Close() { |