Index: app/table_model.cc |
diff --git a/app/table_model.cc b/app/table_model.cc |
index b70ad2d5e85dc9b821ebb10e26f45cef41896fca..e9112d0985f203b3a884d42b1538c2311e2890db 100644 |
--- a/app/table_model.cc |
+++ b/app/table_model.cc |
@@ -75,6 +75,28 @@ SkBitmap TableModel::GetIcon(int row) { |
return SkBitmap(); |
} |
+std::wstring TableModel::GetTooltip(int row) { |
+ return std::wstring(); |
+} |
+ |
+bool TableModel::HasGroups() { |
+ return false; |
+} |
+ |
+TableModel::Groups TableModel::GetGroups() { |
+ // If you override HasGroups to return true, you must override this as |
+ // well. |
+ NOTREACHED(); |
Lei Zhang
2010/09/23 22:05:41
can you #include logging.h and not implicitly depe
|
+ return std::vector<Group>(); |
+} |
+ |
+int TableModel::GetGroupID(int row) { |
+ // If you override HasGroups to return true, you must override this as |
+ // well. |
+ NOTREACHED(); |
+ return 0; |
+} |
+ |
int TableModel::CompareValues(int row1, int row2, int column_id) { |
DCHECK(row1 >= 0 && row1 < RowCount() && |
row2 >= 0 && row2 < RowCount()); |