Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Unified Diff: chrome/browser/ui/cocoa/passwords/base_passwords_content_view_controller.mm

Issue 1645503002: Remove dangling ManagePasswordsBubbleModel pointers. Test that different password bubbles don't pin… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698