| Index: chrome/browser/ui/cocoa/passwords/passwords_bubble_cocoa.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/passwords_bubble_cocoa.mm b/chrome/browser/ui/cocoa/passwords/passwords_bubble_cocoa.mm
|
| index 8c871a9b6d9b6df94372684c5ac80731118dc133..d5e520aa1f95ff367d1f59e4ec006f0767bb715e 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/passwords_bubble_cocoa.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/passwords_bubble_cocoa.mm
|
| @@ -13,6 +13,7 @@
|
| #include "chrome/browser/ui/cocoa/location_bar/manage_passwords_decoration.h"
|
| #import "chrome/browser/ui/cocoa/passwords/passwords_bubble_controller.h"
|
| #include "chrome/browser/ui/passwords/manage_passwords_icon.h"
|
| +#include "chrome/browser/ui/passwords/passwords_model_delegate.h"
|
| #include "content/public/browser/web_contents.h"
|
|
|
| typedef void (^Callback)(void);
|
| @@ -43,7 +44,8 @@ ManagePasswordsBubbleCocoa::ManagePasswordsBubbleCocoa(
|
| content::WebContents* webContents,
|
| ManagePasswordsBubbleModel::DisplayReason displayReason,
|
| ManagePasswordsIcon* icon)
|
| - : model_(webContents, displayReason),
|
| + : model_(PasswordsModelDelegateFromWebContents(webContents),
|
| + displayReason),
|
| icon_(icon),
|
| controller_(nil),
|
| webContents_(webContents),
|
|
|