| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_CONTEXT_MENU_COCOA_CONTROLLER
_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CONTEXT_MENU_COCOA_CONTROLLER
_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CONTEXT_MENU_COCOA_CONTROLLER
_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CONTEXT_MENU_COCOA_CONTROLLER
_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
| 12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 13 | 12 |
| 14 @class BookmarkBarController; | 13 @class BookmarkBarController; |
| 15 class BookmarkContextMenuController; | 14 class BookmarkContextMenuController; |
| 16 class BookmarkContextMenuDelegateBridge; | 15 class BookmarkContextMenuDelegateBridge; |
| 17 @class MenuController; | 16 @class MenuController; |
| 18 | 17 |
| 19 namespace bookmarks { | 18 namespace bookmarks { |
| 20 class BookmarkNode; | 19 class BookmarkNode; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 57 |
| 59 // Returns an NSMenu customized for the bookmark bar. | 58 // Returns an NSMenu customized for the bookmark bar. |
| 60 - (NSMenu*)menuForBookmarkBar; | 59 - (NSMenu*)menuForBookmarkBar; |
| 61 | 60 |
| 62 // Closes the menu, if it's currently open. | 61 // Closes the menu, if it's currently open. |
| 63 - (void)cancelTracking; | 62 - (void)cancelTracking; |
| 64 | 63 |
| 65 @end | 64 @end |
| 66 | 65 |
| 67 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CONTEXT_MENU_COCOA_CONTROL
LER_H_ | 66 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_CONTEXT_MENU_COCOA_CONTROL
LER_H_ |
| OLD | NEW |