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

Unified Diff: chrome/browser/ui/bookmarks/bookmark_drag_drop.h

Issue 865163003: bookmarks: Move BookmarkNode into 'bookmarks' namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enhanced_bookmarks fix Created 5 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
Index: chrome/browser/ui/bookmarks/bookmark_drag_drop.h
diff --git a/chrome/browser/ui/bookmarks/bookmark_drag_drop.h b/chrome/browser/ui/bookmarks/bookmark_drag_drop.h
index 8b7885c83afc7eb7782b2c3e26af0628d583b21f..2720d6c018a8948ad7dbe38fed6ef918004e473e 100644
--- a/chrome/browser/ui/bookmarks/bookmark_drag_drop.h
+++ b/chrome/browser/ui/bookmarks/bookmark_drag_drop.h
@@ -10,10 +10,10 @@
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/gfx/native_widget_types.h"
-class BookmarkNode;
class Profile;
namespace bookmarks {
+class BookmarkNode;
struct BookmarkNodeData;
}
@@ -21,7 +21,7 @@ namespace chrome {
// Starts the process of dragging a folder of bookmarks.
void DragBookmarks(Profile* profile,
- const std::vector<const BookmarkNode*>& nodes,
+ const std::vector<const bookmarks::BookmarkNode*>& nodes,
gfx::NativeView view,
ui::DragDropTypes::DragEventSource source);
@@ -31,7 +31,7 @@ void DragBookmarks(Profile* profile,
// Returns the drop type used.
int DropBookmarks(Profile* profile,
const bookmarks::BookmarkNodeData& data,
- const BookmarkNode* parent_node,
+ const bookmarks::BookmarkNode* parent_node,
int index,
bool copy);

Powered by Google App Engine
This is Rietveld 408576698