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/views/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/views/view.h')
-rw-r--r-- | chrome/views/view.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/views/view.h b/chrome/views/view.h index d56d94f..18314b0 100644 --- a/chrome/views/view.h +++ b/chrome/views/view.h @@ -158,6 +158,7 @@ class View : public AcceleratorTarget { // Set the bounds in the parent's coordinate system. void SetBounds(const CRect& bounds); + void SetBounds(const gfx::Point& origin, const gfx::Size& size); void SetBounds(int x, int y, int width, int height); void SetX(int x) { SetBounds(x, y(), width(), height()); } void SetY(int y) { SetBounds(x(), y, width(), height()); } @@ -212,14 +213,14 @@ class View : public AcceleratorTarget { void GetPosition(CPoint* out) const; // Get the size the View would like to be, if enough space were available. - virtual void GetPreferredSize(CSize* out); + virtual gfx::Size GetPreferredSize(); // Convenience method that sizes this view to its preferred size. void SizeToPreferredSize(); // Gets the minimum size of the view. View's implementation invokes // GetPreferredSize. - virtual void GetMinimumSize(CSize* out); + virtual gfx::Size GetMinimumSize(); // Return the height necessary to display this view with the provided width. // View's implementation returns the value from getPreferredSize.cy. |