Index: ui/views/controls/table/table_grouper.h |
diff --git a/ui/views/controls/table/table_grouper.h b/ui/views/controls/table/table_grouper.h |
index d6659ac19563cc6962ff76eda741adb755c2b2df..ce100e4c98a44c8e36074091573af607f7cb3482 100644 |
--- a/ui/views/controls/table/table_grouper.h |
+++ b/ui/views/controls/table/table_grouper.h |
@@ -5,9 +5,11 @@ |
#ifndef UI_VIEWS_CONTROLS_TABLE_TABLE_GROUPER_H_ |
#define UI_VIEWS_CONTROLS_TABLE_TABLE_GROUPER_H_ |
+#include "ui/views/views_export.h" |
+ |
namespace views { |
-struct GroupRange { |
+struct VIEWS_EXPORT GroupRange { |
int start; |
int length; |
}; |
@@ -15,7 +17,7 @@ struct GroupRange { |
// TableGrouper is used by TableView to group a set of rows and treat them |
// as one. Rows that fall in the same group are selected together and sorted |
// together. |
-class TableGrouper { |
+class VIEWS_EXPORT TableGrouper { |
public: |
virtual void GetGroupRange(int model_index, GroupRange* range) = 0; |