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

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

Issue 284893003: Move bookmarks/core/... to bookmarks/... (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing errors reported by presubmit Created 6 years, 7 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/core/browser/bookmark_model.h" 7 #include "components/bookmarks/browser/bookmark_model.h"
8 8
9 @implementation BookmarkTreeBrowserCell 9 @implementation BookmarkTreeBrowserCell
10 10
11 @synthesize matrix = matrix_; 11 @synthesize matrix = matrix_;
12 @synthesize target = target_; 12 @synthesize target = target_;
13 @synthesize action = action_; 13 @synthesize action = action_;
14 14
15 - (const BookmarkNode*)bookmarkNode { 15 - (const BookmarkNode*)bookmarkNode {
16 return bookmarkNode_; 16 return bookmarkNode_;
17 } 17 }
18 18
19 - (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode { 19 - (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode {
20 bookmarkNode_ = bookmarkNode; 20 bookmarkNode_ = bookmarkNode;
21 } 21 }
22 22
23 @end 23 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698