| OLD | NEW |
| 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 |
| OLD | NEW |