| Index: chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_controller.mm b/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_controller.mm
|
| index d0b18cfd4e962f66d7750fbee75f81ac662e3311..6b368d8111125c0f3339bd6cbb700841bbfb5349 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_controller.mm
|
| @@ -8,6 +8,7 @@
|
| #import "chrome/browser/ui/cocoa/browser_window_controller.h"
|
| #import "chrome/browser/ui/cocoa/info_bubble_view.h"
|
| #import "chrome/browser/ui/cocoa/info_bubble_window.h"
|
| +#import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_manage_view_controller.h"
|
| #include "chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.h"
|
| #import "chrome/browser/ui/cocoa/passwords/manage_passwords_bubble_confirmation_view_controller.h"
|
| #include "ui/base/cocoa/window_size_constants.h"
|
| @@ -54,6 +55,10 @@
|
| [[ManagePasswordsBubbleConfirmationViewController alloc]
|
| initWithModel:model_
|
| delegate:self]);
|
| + } else if (model_->state() == password_manager::ui::MANAGE_STATE) {
|
| + currentController_.reset([[ManagePasswordsBubbleManageViewController alloc]
|
| + initWithModel:model_
|
| + delegate:self]);
|
| }
|
| [self performLayout];
|
| }
|
|
|