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

Unified Diff: chrome/browser/bookmarks/bookmark_table_model.h

Issue 21315: Add TableModel to the scaffold, so we don't depend on views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_table_model.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/bookmark_table_model.h
===================================================================
--- chrome/browser/bookmarks/bookmark_table_model.h (revision 9707)
+++ chrome/browser/bookmarks/bookmark_table_model.h (working copy)
@@ -6,7 +6,14 @@
#define CHROME_BROWSER_BOOKMARKS_BOOKMARK_TABLE_MODEL_H_
#include "chrome/browser/bookmarks/bookmark_model.h"
+
+#include "build/build_config.h"
+
+#if defined(OS_WIN)
#include "chrome/views/table_view.h"
+#elif defined(OS_POSIX)
+#include "chrome/common/temp_scaffolding_stubs.h"
+#endif
// BookmarkTableModel provides a view of the BookmarkModel as a TableModel.
// Three variations are provided:
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_table_model.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698