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

Unified Diff: app/table_model.cc

Issue 3461019: FBTF: Move virtual methods to implementation files. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Win+chromeos+mac fixes Created 10 years, 3 months 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
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());

Powered by Google App Engine
This is Rietveld 408576698