| 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 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
| 10 | 10 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 - (void)performOneScroll:(CGFloat)delta; | 193 - (void)performOneScroll:(CGFloat)delta; |
| 194 - (BookmarkButton*)buttonThatMouseIsIn; | 194 - (BookmarkButton*)buttonThatMouseIsIn; |
| 195 // Set to YES in order to prevent animations. | 195 // Set to YES in order to prevent animations. |
| 196 - (void)setIgnoreAnimations:(BOOL)ignore; | 196 - (void)setIgnoreAnimations:(BOOL)ignore; |
| 197 | 197 |
| 198 // Return YES if the scroll-up or scroll-down arrows are showing. | 198 // Return YES if the scroll-up or scroll-down arrows are showing. |
| 199 - (BOOL)canScrollUp; | 199 - (BOOL)canScrollUp; |
| 200 - (BOOL)canScrollDown; | 200 - (BOOL)canScrollDown; |
| 201 - (CGFloat)verticalScrollArrowHeight; | 201 - (CGFloat)verticalScrollArrowHeight; |
| 202 - (NSView*)visibleView; | 202 - (NSView*)visibleView; |
| 203 - (NSView*)scrollView; | 203 - (NSScrollView*)scrollView; |
| 204 - (NSView*)folderView; | 204 - (NSView*)folderView; |
| 205 | 205 |
| 206 - (BookmarkButton*)buttonForDroppingOnAtPoint:(NSPoint)point; | 206 - (BookmarkButton*)buttonForDroppingOnAtPoint:(NSPoint)point; |
| 207 @end | 207 @end |
| 208 | 208 |
| 209 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ | 209 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_FOLDER_CONTROLLER_H_ |
| OLD | NEW |