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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.mm

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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h"
6 6
7 #include "components/bookmarks/browser/bookmark_model.h" 7 #include "components/bookmarks/browser/bookmark_model.h"
8 8
9 using bookmarks::BookmarkNode;
10
9 @implementation BookmarkTreeBrowserCell 11 @implementation BookmarkTreeBrowserCell
10 12
11 @synthesize matrix = matrix_; 13 @synthesize matrix = matrix_;
12 @synthesize target = target_; 14 @synthesize target = target_;
13 @synthesize action = action_; 15 @synthesize action = action_;
14 16
15 - (const BookmarkNode*)bookmarkNode { 17 - (const BookmarkNode*)bookmarkNode {
16 return bookmarkNode_; 18 return bookmarkNode_;
17 } 19 }
18 20
19 - (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode { 21 - (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode {
20 bookmarkNode_ = bookmarkNode; 22 bookmarkNode_ = bookmarkNode;
21 } 23 }
22 24
23 @end 25 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698