blob: 1b6b8b904c8e993cd4332b8a56ca4bfca67e245c [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_button_cell.h"
@implementation BookmarkBarFolderButtonCell
+ (id)buttonCellForNode:(const BookmarkNode*)node
text:(NSString*)text
image:(NSImage*)image
menuController:(BookmarkContextMenuCocoaController*)menuController {
id buttonCell =
[[[BookmarkBarFolderButtonCell alloc] initForNode:node
text:text
image:image
menuController:menuController]
autorelease];
return buttonCell;
}
- (BOOL)isFolderButtonCell {
return YES;
}
- (void)setMouseInside:(BOOL)flag animate:(BOOL)animated {
}
@end