Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm |
diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm |
index 69008e581ce46d1788978303917c7c6302e79d8b..867704b1dbe68d4da95782f516b70884312eb1c9 100644 |
--- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm |
+++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_folder_view.mm |
@@ -99,11 +99,13 @@ using content::UserMetricsAction; |
} |
- (BOOL)wantsPeriodicDraggingUpdates { |
- // TODO(jrg): This should probably return |YES| and the controller should |
- // slide the existing bookmark buttons interactively to the side to make |
- // room for the about-to-be-dropped bookmark. |
+ // TODO(jrg): The controller should slide the existing bookmark buttons |
+ // interactively to the side to make room for the about-to-be-dropped |
+ // bookmark. |
// http://crbug.com/35968 |
- return NO; |
+ |
+ // The bookmark_bar_folder_hover_state expects continuous callbacks. |
+ return YES; |
} |
- (NSDragOperation)draggingUpdated:(id<NSDraggingInfo>)info { |