| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_BASE_MODELS_TABLE_MODEL_H_ | 5 #ifndef UI_BASE_MODELS_TABLE_MODEL_H_ |
| 6 #define UI_BASE_MODELS_TABLE_MODEL_H_ | 6 #define UI_BASE_MODELS_TABLE_MODEL_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| 11 #include "third_party/icu/public/i18n/unicode/coll.h" |
| 11 #include "ui/base/ui_export.h" | 12 #include "ui/base/ui_export.h" |
| 12 #include "unicode/coll.h" | |
| 13 | 13 |
| 14 namespace gfx { | 14 namespace gfx { |
| 15 class ImageSkia; | 15 class ImageSkia; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace ui { | 18 namespace ui { |
| 19 | 19 |
| 20 class TableModelObserver; | 20 class TableModelObserver; |
| 21 | 21 |
| 22 // The model driving the TableView. | 22 // The model driving the TableView. |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 // to be visible. | 129 // to be visible. |
| 130 int min_visible_width; | 130 int min_visible_width; |
| 131 | 131 |
| 132 // Is this column sortable? Default is false | 132 // Is this column sortable? Default is false |
| 133 bool sortable; | 133 bool sortable; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace ui | 136 } // namespace ui |
| 137 | 137 |
| 138 #endif // UI_BASE_MODELS_TABLE_MODEL_H_ | 138 #endif // UI_BASE_MODELS_TABLE_MODEL_H_ |
| OLD | NEW |