Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(622)

Unified Diff: views/controls/combobox/combobox_listener.h

Issue 8682011: views: Move combobox directory to ui/views/controls/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/controls/combobox/combobox.cc ('k') | views/controls/combobox/native_combobox_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/combobox/combobox_listener.h
diff --git a/views/controls/combobox/combobox_listener.h b/views/controls/combobox/combobox_listener.h
deleted file mode 100644
index 3453ce1ac2e448ea6faae7aad27d5107ba2e2e91..0000000000000000000000000000000000000000
--- a/views/controls/combobox/combobox_listener.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef VIEWS_CONTROLS_COMBOBOX_COMBOBOX_LISTENER_H_
-#define VIEWS_CONTROLS_COMBOBOX_COMBOBOX_LISTENER_H_
-#pragma once
-
-namespace views {
-
-class Combobox;
-
-// An interface implemented by an object to let it know that the selected item
-// of a combobox changed.
-class ComboboxListener {
- public:
- // This is invoked once the selected item changed.
- virtual void ItemChanged(Combobox* combo_box,
- int prev_index,
- int new_index) = 0;
-
- protected:
- virtual ~ComboboxListener() {}
-};
-
-} // namespace views
-
-#endif // VIEWS_CONTROLS_COMBOBOX_COMBOBOX_LISTENER_H_
« no previous file with comments | « views/controls/combobox/combobox.cc ('k') | views/controls/combobox/native_combobox_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698