| 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 BookmarkBarFolderView; | 10 @class BookmarkBarFolderView; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 @end | 97 @end |
| 98 | 98 |
| 99 | 99 |
| 100 @interface BookmarkBarFolderController(TestingAPI) | 100 @interface BookmarkBarFolderController(TestingAPI) |
| 101 - (NSView*)mainView; | 101 - (NSView*)mainView; |
| 102 - (NSPoint)windowTopLeft; | 102 - (NSPoint)windowTopLeft; |
| 103 - (NSArray*)buttons; | 103 - (NSArray*)buttons; |
| 104 - (BookmarkBarFolderController*)folderController; | 104 - (BookmarkBarFolderController*)folderController; |
| 105 - (id)folderTarget; | 105 - (id)folderTarget; |
| 106 - (void)configureWindowLevel; |
| 106 @end | 107 @end |
| 107 | 108 |
| OLD | NEW |