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. 4 5#import "chrome/browser/ui/cocoa/bookmarks/bookmark_tree_browser_cell.h" 6 7#include "chrome/browser/bookmarks/bookmark_model.h" 8 9@implementation BookmarkTreeBrowserCell 10 11@synthesize matrix = matrix_; 12@synthesize target = target_; 13@synthesize action = action_; 14 15- (const BookmarkNode*)bookmarkNode { 16 return bookmarkNode_; 17} 18 19- (void)setBookmarkNode:(const BookmarkNode*)bookmarkNode { 20 bookmarkNode_ = bookmarkNode; 21} 22 23@end 24