| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| index fe473f825b4e002ce60df0ee79b599247a1929d6..c73315a4de11831b53672cc827bfafbd6d843879 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller.mm
|
| @@ -682,7 +682,7 @@ void RecordAppLaunch(Profile* profile, GURL url) {
|
|
|
| if (!animate)
|
| [self closeFolderAndStopTrackingMenus];
|
| - RecordBookmarkLaunch(node, [self bookmarkLaunchLocation]);
|
| + RecordBookmarkLaunch(bookmarkModel_, node, [self bookmarkLaunchLocation]);
|
| }
|
|
|
| // Common function to open a bookmark folder of any type.
|
| @@ -692,7 +692,7 @@ void RecordAppLaunch(Profile* profile, GURL url) {
|
|
|
| // Only record the action if it's the initial folder being opened.
|
| if (!showFolderMenus_)
|
| - RecordBookmarkFolderOpen([self bookmarkLaunchLocation]);
|
| + RecordBookmarkFolderOpen(bookmarkModel_, [self bookmarkLaunchLocation]);
|
| showFolderMenus_ = !showFolderMenus_;
|
|
|
| if (sender == offTheSideButton_)
|
| @@ -1229,7 +1229,7 @@ void RecordAppLaunch(Profile* profile, GURL url) {
|
| WindowOpenDisposition disposition =
|
| ui::WindowOpenDispositionFromNSEvent([NSApp currentEvent]);
|
| [self openURL:GURL(chrome::kChromeUIAppsURL) disposition:disposition];
|
| - RecordBookmarkAppsPageOpen([self bookmarkLaunchLocation]);
|
| + RecordBookmarkAppsPageOpen(bookmarkModel_, [self bookmarkLaunchLocation]);
|
| }
|
|
|
| // To avoid problems with sync, changes that may impact the current
|
|
|