| 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_BUBBLE_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUBBLE_CONTROLLER_H_ |
| 7 |
| 5 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 6 | 9 |
| 7 #include <memory> | 10 #include <memory> |
| 8 | 11 |
| 9 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h" | 13 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h" |
| 11 #import "chrome/browser/ui/cocoa/has_weak_browser_pointer.h" | 14 #import "chrome/browser/ui/cocoa/has_weak_browser_pointer.h" |
| 12 #import "chrome/browser/ui/cocoa/omnibox_decoration_bubble_controller.h" | 15 #import "chrome/browser/ui/cocoa/omnibox_decoration_bubble_controller.h" |
| 13 | 16 |
| 14 @class BookmarkBubbleController; | 17 @class BookmarkBubbleController; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 90 |
| 88 - (void)addFolderNodes:(const bookmarks::BookmarkNode*)parent | 91 - (void)addFolderNodes:(const bookmarks::BookmarkNode*)parent |
| 89 toPopUpButton:(NSPopUpButton*)button | 92 toPopUpButton:(NSPopUpButton*)button |
| 90 indentation:(int)indentation; | 93 indentation:(int)indentation; |
| 91 - (void)setTitle:(NSString*)title | 94 - (void)setTitle:(NSString*)title |
| 92 parentFolder:(const bookmarks::BookmarkNode*)parent; | 95 parentFolder:(const bookmarks::BookmarkNode*)parent; |
| 93 - (void)setParentFolderSelection:(const bookmarks::BookmarkNode*)parent; | 96 - (void)setParentFolderSelection:(const bookmarks::BookmarkNode*)parent; |
| 94 + (NSString*)chooseAnotherFolderString; | 97 + (NSString*)chooseAnotherFolderString; |
| 95 - (NSPopUpButton*)folderPopUpButton; | 98 - (NSPopUpButton*)folderPopUpButton; |
| 96 @end | 99 @end |
| 100 |
| 101 #endif // CHROME_BROWSER_UI_COCOA_BOOKMARKS_BOOKMARK_BUBBLE_CONTROLLER_H_ |
| OLD | NEW |