Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_bubble_controller.h

Issue 1302243002: [Mac] Remove kPulseBookmarkButtonNotification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bookmarkeditor
Patch Set: Fix test. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 #import <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "base/mac/scoped_nsobject.h" 7 #include "base/mac/scoped_nsobject.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #import "chrome/browser/ui/cocoa/base_bubble_controller.h" 9 #import "chrome/browser/ui/cocoa/base_bubble_controller.h"
10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h" 10 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 - (IBAction)edit:(id)sender; 70 - (IBAction)edit:(id)sender;
71 - (IBAction)folderChanged:(id)sender; 71 - (IBAction)folderChanged:(id)sender;
72 72
73 @end 73 @end
74 74
75 75
76 // Exposed only for unit testing. 76 // Exposed only for unit testing.
77 @interface BookmarkBubbleController (ExposedForUnitTesting) 77 @interface BookmarkBubbleController (ExposedForUnitTesting)
78 78
79 @property(nonatomic, readonly) NSView* syncPromoPlaceholder; 79 @property(nonatomic, readonly) NSView* syncPromoPlaceholder;
80 @property(nonatomic, readonly)
81 const bookmarks::BookmarkNode* pulsingBookmarkNode;
80 82
81 - (void)addFolderNodes:(const bookmarks::BookmarkNode*)parent 83 - (void)addFolderNodes:(const bookmarks::BookmarkNode*)parent
82 toPopUpButton:(NSPopUpButton*)button 84 toPopUpButton:(NSPopUpButton*)button
83 indentation:(int)indentation; 85 indentation:(int)indentation;
84 - (void)setTitle:(NSString*)title 86 - (void)setTitle:(NSString*)title
85 parentFolder:(const bookmarks::BookmarkNode*)parent; 87 parentFolder:(const bookmarks::BookmarkNode*)parent;
86 - (void)setParentFolderSelection:(const bookmarks::BookmarkNode*)parent; 88 - (void)setParentFolderSelection:(const bookmarks::BookmarkNode*)parent;
87 + (NSString*)chooseAnotherFolderString; 89 + (NSString*)chooseAnotherFolderString;
88 - (NSPopUpButton*)folderPopUpButton; 90 - (NSPopUpButton*)folderPopUpButton;
89 @end 91 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698