summaryrefslogtreecommitdiffstats
path: root/chromium/ui/base/models/combobox_model_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ui/base/models/combobox_model_observer.h')
-rw-r--r--chromium/ui/base/models/combobox_model_observer.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/chromium/ui/base/models/combobox_model_observer.h b/chromium/ui/base/models/combobox_model_observer.h
index e79f7375134..f8e281e1842 100644
--- a/chromium/ui/base/models/combobox_model_observer.h
+++ b/chromium/ui/base/models/combobox_model_observer.h
@@ -5,16 +5,18 @@
#ifndef UI_BASE_MODELS_COMBOBOX_MODEL_OBSERVER_H_
#define UI_BASE_MODELS_COMBOBOX_MODEL_OBSERVER_H_
-#include "ui/base/ui_export.h"
+#include "ui/base/ui_base_export.h"
namespace ui {
+class ComboboxModel;
+
// Observer for the ComboboxModel.
-class UI_EXPORT ComboboxModelObserver {
+class UI_BASE_EXPORT ComboboxModelObserver {
public:
- // Invoked when the model has changed in some way. The observer should assume
+ // Invoked when |model| has changed in some way. The observer should assume
// everything changed.
- virtual void OnModelChanged() = 0;
+ virtual void OnComboboxModelChanged(ComboboxModel* model) = 0;
protected:
virtual ~ComboboxModelObserver() {}