Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / ui / cocoa / bookmarks / bookmark_tree_browser_cell.mm
blob7836801f089891f2fd61bc3e084928267a9c2205
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
3 // found in the LICENSE file.
5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h"
7 #include "components/bookmarks/browser/bookmark_model.h"
9 using bookmarks::BookmarkNode;
11 @implementation BookmarkTreeBrowserCell
13 @synthesize matrix = matrix_;
14 @synthesize target = target_;
15 @synthesize action = action_;
17 - (const BookmarkNode*)bookmarkNode {
18   return bookmarkNode_;
21 - (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode {
22   bookmarkNode_ = bookmarkNode;
25 @end