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 #include <vector> | 6 #include <vector> |
7 #import "chrome/browser/cocoa/draggable_button.h" | 7 #import "chrome/browser/cocoa/draggable_button.h" |
8 #include "webkit/glue/window_open_disposition.h" | 8 #include "webkit/glue/window_open_disposition.h" |
9 | 9 |
10 @class BookmarkBarFolderController; | 10 @class BookmarkBarFolderController; |
11 @class BookmarkButton; | 11 @class BookmarkButton; |
12 class BookmarkDragData; | 12 struct BookmarkDragData; |
Mark Mentovai
2010/06/11 18:47:35
Oh, clang considers class/structness? How very MSV
| |
13 class BookmarkModel; | 13 class BookmarkModel; |
14 class BookmarkNode; | 14 class BookmarkNode; |
15 @class BrowserWindowController; | 15 @class BrowserWindowController; |
16 class ThemeProvider; | 16 class ThemeProvider; |
17 | 17 |
18 // Protocol for a BookmarkButton's delegate, responsible for doing | 18 // Protocol for a BookmarkButton's delegate, responsible for doing |
19 // things on behalf of a bookmark button. | 19 // things on behalf of a bookmark button. |
20 @protocol BookmarkButtonDelegate | 20 @protocol BookmarkButtonDelegate |
21 | 21 |
22 // Fill the given pasteboard with appropriate data when the given button is | 22 // Fill the given pasteboard with appropriate data when the given button is |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
198 // http://crbug.com/35967 | 198 // http://crbug.com/35967 |
199 - (BOOL)isEmpty; | 199 - (BOOL)isEmpty; |
200 | 200 |
201 @end // @interface BookmarkButton | 201 @end // @interface BookmarkButton |
202 | 202 |
203 | 203 |
204 @interface BookmarkButton(TestingAPI) | 204 @interface BookmarkButton(TestingAPI) |
205 - (void)beginDrag:(NSEvent*)event; | 205 - (void)beginDrag:(NSEvent*)event; |
206 @end | 206 @end |
207 | 207 |
OLD | NEW |