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

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

Issue 1912: Renames BoomarkBarModel to BookmarkModel. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 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: chrome/browser/bookmarks/bookmark_drag_data.h
===================================================================
--- chrome/browser/bookmarks/bookmark_drag_data.h (revision 1988)
+++ chrome/browser/bookmarks/bookmark_drag_data.h (working copy)
@@ -10,8 +10,8 @@
#include "chrome/browser/history/history.h"
#include "googleurl/src/gurl.h"
-class BookmarkBarModel;
-class BookmarkBarNode;
+class BookmarkModel;
+class BookmarkNode;
class OSExchangeData;
class Pickle;
@@ -32,7 +32,7 @@
BookmarkDragData();
// Created a BookmarkDragData populated from node.
- explicit BookmarkDragData(BookmarkBarNode* node);
+ explicit BookmarkDragData(BookmarkNode* node);
// Writes this BookmarkDragData to data. If BookmarkDragData is a URL,
// this writes out the URL and URL title clipboard data as well.
@@ -45,7 +45,7 @@
// path can not be found, NULL is returned.
//
// This is only valid for groups.
- BookmarkBarNode* BookmarkDragData::GetNode(BookmarkBarModel* model) const;
+ BookmarkNode* BookmarkDragData::GetNode(BookmarkModel* model) const;
// If true, this entry represents a StarredEntry of type URL.
bool is_url;
@@ -72,7 +72,7 @@
bool ReadFromPickle(Pickle* pickle, void** iterator);
// Adds to children an entry for each child of node.
- void AddChildren(BookmarkBarNode* node);
+ void AddChildren(BookmarkNode* node);
// ID (node->id()) of the node this BookmarkDragData was created from.
int id_;

Powered by Google App Engine
This is Rietveld 408576698