| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 - (void)checkForBookmarkButtonGrowth:(NSButton*)button; | 453 - (void)checkForBookmarkButtonGrowth:(NSButton*)button; |
| 454 - (void)frameDidChange; | 454 - (void)frameDidChange; |
| 455 - (int64_t)nodeIdFromMenuTag:(int32_t)tag; | 455 - (int64_t)nodeIdFromMenuTag:(int32_t)tag; |
| 456 - (int32_t)menuTagFromNodeId:(int64_t)menuid; | 456 - (int32_t)menuTagFromNodeId:(int64_t)menuid; |
| 457 - (void)updateTheme:(const ui::ThemeProvider*)themeProvider; | 457 - (void)updateTheme:(const ui::ThemeProvider*)themeProvider; |
| 458 - (BookmarkButton*)buttonForDroppingOnAtPoint:(NSPoint)point; | 458 - (BookmarkButton*)buttonForDroppingOnAtPoint:(NSPoint)point; |
| 459 - (BOOL)isEventAnExitEvent:(NSEvent*)event; | 459 - (BOOL)isEventAnExitEvent:(NSEvent*)event; |
| 460 - (BOOL)shrinkOrHideView:(NSView*)view forMaxX:(CGFloat)maxViewX; | 460 - (BOOL)shrinkOrHideView:(NSView*)view forMaxX:(CGFloat)maxViewX; |
| 461 - (void)unhighlightBookmark:(const bookmarks::BookmarkNode*)node; | 461 - (void)unhighlightBookmark:(const bookmarks::BookmarkNode*)node; |
| 462 | 462 |
| 463 // The following are for testing purposes only and are not used internally. | |
| 464 - (NSMenu *)menuForFolderNode:(const bookmarks::BookmarkNode*)node; | |
| 465 @end | 463 @end |
| 466 | 464 |
| 467 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_CONTROLLER_H_ | 465 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BAR_CONTROLLER_H_ |
| OLD | NEW |