| Index: chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm b/chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm
|
| index 1703880cad2618e9eee84eec56035fdbd7ae9ddf..a30a30d93dccc3cafc720983d5e952156f466749 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm
|
| @@ -8,12 +8,12 @@
|
| #include "base/mac/scoped_nsobject.h"
|
| #import "chrome/browser/ui/cocoa/passwords/passwords_bubble_utils.h"
|
|
|
| -@implementation ManagePasswordsBubbleContentViewController
|
| -
|
| +@implementation BasePasswordsContentViewController
|
| @synthesize delegate = delegate_;
|
|
|
| -- (id)initWithDelegate:(id<ManagePasswordsBubbleContentViewDelegate>)delegate {
|
| - if ((self = [super initWithNibName:nil bundle:nil])) {
|
| +- (instancetype)initWithDelegate:
|
| + (id<BasePasswordsContentViewDelegate>)delegate {
|
| + if (self = [super initWithNibName:nil bundle:nil]) {
|
| delegate_ = delegate;
|
| }
|
| return self;
|
|
|