diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 18:02:59 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-31 18:02:59 +0000 |
commit | ad7f5dd1a9f700d1fda062f7b541ab1fb9ecfdd3 (patch) | |
tree | 2ef13720daf6be8b2356db9501a2c2a634f03c6c /views/controls/combobox/native_combobox_wrapper.h | |
parent | a1cbcc403c92a24a44d369fb6af29a6529cb44dd (diff) | |
download | chromium_src-ad7f5dd1a9f700d1fda062f7b541ab1fb9ecfdd3.zip chromium_src-ad7f5dd1a9f700d1fda062f7b541ab1fb9ecfdd3.tar.gz chromium_src-ad7f5dd1a9f700d1fda062f7b541ab1fb9ecfdd3.tar.bz2 |
Lands 176025 from Oshima:
Combobox implemenation for GTK
Removed const from GetPreferredSize, as GTK implementation has cache
to update.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/183015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24904 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/combobox/native_combobox_wrapper.h')
-rw-r--r-- | views/controls/combobox/native_combobox_wrapper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/combobox/native_combobox_wrapper.h b/views/controls/combobox/native_combobox_wrapper.h index 3cecde0..76f7855 100644 --- a/views/controls/combobox/native_combobox_wrapper.h +++ b/views/controls/combobox/native_combobox_wrapper.h @@ -34,7 +34,7 @@ class NativeComboboxWrapper { virtual bool IsDropdownOpen() const = 0; // Returns the preferred size of the combobox. - virtual gfx::Size GetPreferredSize() const = 0; + virtual gfx::Size GetPreferredSize() = 0; // Retrieves the views::View that hosts the native control. virtual View* GetView() = 0; |