diff options
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_model.h')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/bookmarks/bookmark_model.h b/chrome/browser/bookmarks/bookmark_model.h index ac32fc0..f605dec 100644 --- a/chrome/browser/bookmarks/bookmark_model.h +++ b/chrome/browser/bookmarks/bookmark_model.h @@ -10,6 +10,7 @@ #include <set> #include <vector> +#include "app/tree_node_model.h" #include "base/lock.h" #include "base/observer_list.h" #include "base/waitable_event.h" @@ -22,7 +23,6 @@ #include "googleurl/src/gurl.h" #include "third_party/skia/include/core/SkBitmap.h" #include "testing/gtest/include/gtest/gtest_prod.h" -#include "views/controls/tree/tree_node_model.h" class BookmarkEditorView; class BookmarkModel; @@ -38,7 +38,7 @@ class StarredURLDatabase; // BookmarkNode contains information about a starred entry: title, URL, favicon, // star id and type. BookmarkNodes are returned from a BookmarkModel. // -class BookmarkNode : public views::TreeNode<BookmarkNode> { +class BookmarkNode : public TreeNode<BookmarkNode> { friend class BookmarkModel; friend class BookmarkCodec; friend class history::StarredURLDatabase; |