summaryrefslogtreecommitdiffstats
path: root/chrome/views/image_view.h
diff options
context:
space:
mode:
authorbeng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-15 18:02:30 +0000
committerbeng@google.com <beng@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-15 18:02:30 +0000
commit154f8bcac65142d7ae6733204c15ae52cfa320c6 (patch)
treed7375c1119946c2914ee79ef2c0e8aa195b1fbe9 /chrome/views/image_view.h
parent8144d0cea4e142ff7d7a75c84240a4bb8a7fb3a4 (diff)
downloadchromium_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/views/image_view.h')
-rw-r--r--chrome/views/image_view.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/views/image_view.h b/chrome/views/image_view.h
index 1f25550..ce18b81 100644
--- a/chrome/views/image_view.h
+++ b/chrome/views/image_view.h
@@ -48,12 +48,12 @@ class ImageView : public View {
const SkBitmap& GetImage();
// Set the desired image size for the receiving ImageView.
- void SetImageSize(const CSize& image_size);
+ void SetImageSize(const gfx::Size& image_size);
// Return the preferred size for the receiving view. Returns false if the
// preferred size is not defined, which means that the view uses the image
// size.
- bool GetImageSize(CSize* image_size);
+ bool GetImageSize(gfx::Size* image_size);
// Reset the image size to the current image dimensions.
void ResetImageSize();
@@ -72,7 +72,7 @@ class ImageView : public View {
// Return whether the image should be centered inside the view.
// Overriden from View
- virtual void GetPreferredSize(CSize* out);
+ virtual gfx::Size GetPreferredSize();
virtual void Paint(ChromeCanvas* canvas);
// Overriden from View.
@@ -87,7 +87,7 @@ class ImageView : public View {
bool image_size_set_;
// The actual image size.
- CSize image_size_;
+ gfx::Size image_size_;
// The underlying bitmap.
SkBitmap image_;