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

Unified Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.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/cocoa/bookmarks/bookmark_editor_controller.h
diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h
index 0805a6dd3fc3e08116348c67515fe2618e306e38..6958ddb44d41cf94b94a0fcf92ac3b2acc94a79a 100644
--- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h
+++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_controller.h
@@ -12,7 +12,7 @@
// button.
@interface BookmarkEditorController : BookmarkEditorBaseController {
@private
- const BookmarkNode* node_; // weak; owned by the model
+ const bookmarks::BookmarkNode* node_; // weak; owned by the model
base::scoped_nsobject<NSString> initialUrl_;
NSString* displayURL_; // Bound to a text field in the dialog.
IBOutlet NSTextField* urlField_;
@@ -23,8 +23,8 @@
- (id)initWithParentWindow:(NSWindow*)parentWindow
profile:(Profile*)profile
- parent:(const BookmarkNode*)parent
- node:(const BookmarkNode*)node
+ parent:(const bookmarks::BookmarkNode*)parent
+ node:(const bookmarks::BookmarkNode*)node
url:(const GURL&)url
title:(const base::string16&)title
configuration:(BookmarkEditor::Configuration)configuration;

Powered by Google App Engine
This is Rietveld 408576698