diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 16:28:35 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-22 16:28:35 +0000 |
commit | 61b84ba044118d4338416bf8c9a1dc5c03cf78a2 (patch) | |
tree | d6b0881a183492da8bd863fc3be7bbfd21af9d0e /ui/views/examples/text_example.h | |
parent | cd43b5d95d3d089ce31ee21ef54a8a492388fcde (diff) | |
download | chromium_src-61b84ba044118d4338416bf8c9a1dc5c03cf78a2.zip chromium_src-61b84ba044118d4338416bf8c9a1dc5c03cf78a2.tar.gz chromium_src-61b84ba044118d4338416bf8c9a1dc5c03cf78a2.tar.bz2 |
views: Factor out Listener from Combobox into its own header file.
R=sky@chromium.org
Review URL: http://codereview.chromium.org/8607001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@111165 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/examples/text_example.h')
-rw-r--r-- | ui/views/examples/text_example.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/views/examples/text_example.h b/ui/views/examples/text_example.h index fb8c4f0..e99fb1a 100644 --- a/ui/views/examples/text_example.h +++ b/ui/views/examples/text_example.h @@ -10,7 +10,7 @@ #include "base/compiler_specific.h" #include "ui/views/examples/example_base.h" #include "views/controls/button/button.h" -#include "views/controls/combobox/combobox.h" +#include "views/controls/combobox/combobox_listener.h" namespace views { class Checkbox; @@ -21,7 +21,7 @@ namespace examples { class TextExample : public ExampleBase, public views::ButtonListener, - public views::Combobox::Listener { + public views::ComboboxListener { public: explicit TextExample(ExamplesMain* main); virtual ~TextExample(); @@ -40,7 +40,7 @@ class TextExample : public ExampleBase, virtual void ButtonPressed(views::Button* button, const views::Event& event) OVERRIDE; - // Overridden from views::Combobox::Listener: + // Overridden from views::ComboboxListener: virtual void ItemChanged(views::Combobox* combo_box, int prev_index, int new_index) OVERRIDE; |