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_item_view.h | |
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_item_view.h')
-rw-r--r-- | chrome/browser/views/download_item_view.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/download_item_view.h b/chrome/browser/views/download_item_view.h index c29a154..e67697e 100644 --- a/chrome/browser/views/download_item_view.h +++ b/chrome/browser/views/download_item_view.h @@ -62,7 +62,7 @@ class DownloadItemView : public ChromeViews::NativeButton::Listener, // View overrides virtual void Layout(); virtual void Paint(ChromeCanvas* canvas); - virtual void GetPreferredSize(CSize *out); + virtual gfx::Size GetPreferredSize(); virtual void OnMouseExited(const ChromeViews::MouseEvent& event); virtual void OnMouseMoved(const ChromeViews::MouseEvent& event); virtual bool OnMousePressed(const ChromeViews::MouseEvent& event); @@ -139,7 +139,7 @@ class DownloadItemView : public ChromeViews::NativeButton::Listener, // Sets |size| with the size of the Save and Discard buttons (they have the // same size). - void GetButtonSize(CSize* size); + gfx::Size GetButtonSize(); // Sizes the dangerous download label to a minimum width available using 2 // lines. The size is computed only the first time this method is invoked @@ -228,7 +228,7 @@ class DownloadItemView : public ChromeViews::NativeButton::Listener, bool dangerous_download_label_sized_; // The size of the buttons. Cached so animation works when hidden. - CSize cached_button_size_; + gfx::Size cached_button_size_; DISALLOW_EVIL_CONSTRUCTORS(DownloadItemView); }; |