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 <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #include "base/scoped_nsobject.h" | 7 #include "base/scoped_nsobject.h" |
8 #import "chrome/browser/cocoa/bookmark_button.h" | 8 #import "chrome/browser/cocoa/bookmark_button.h" |
9 | 9 |
10 @class BookmarkBarController; | 10 @class BookmarkBarController; |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 - (void)performOneScroll:(CGFloat)delta; | 164 - (void)performOneScroll:(CGFloat)delta; |
165 // Set to YES in order to prevent animations. | 165 // Set to YES in order to prevent animations. |
166 - (void)setIgnoreAnimations:(BOOL)ignore; | 166 - (void)setIgnoreAnimations:(BOOL)ignore; |
167 | 167 |
168 // Return YES if we can scroll up or down. | 168 // Return YES if we can scroll up or down. |
169 - (BOOL)canScrollUp; | 169 - (BOOL)canScrollUp; |
170 - (BOOL)canScrollDown; | 170 - (BOOL)canScrollDown; |
171 // Return YES if the scrollable_ flag has been set. | 171 // Return YES if the scrollable_ flag has been set. |
172 - (BOOL)scrollable; | 172 - (BOOL)scrollable; |
173 | 173 |
| 174 - (BookmarkButton*)buttonForDroppingOnAtPoint:(NSPoint)point; |
174 @end | 175 @end |
175 | 176 |
OLD | NEW |