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

Unified Diff: chrome/browser/ui/cocoa/passwords/update_pending_password_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
« no previous file with comments | « chrome/browser/ui/cocoa/passwords/save_pending_password_view_controller.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm
diff --git a/chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm b/chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm
index 186e38a66bdc9eb5f459b360554fcd02225638b6..40a451004138cd79a44b7de2b824a9fd78396000 100644
--- a/chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm
+++ b/chrome/browser/ui/cocoa/passwords/update_pending_password_view_controller.mm
@@ -32,14 +32,14 @@
model->OnUpdateClicked(model->pending_password());
}
}
- [delegate_ viewShouldDismiss];
+ [self.delegate viewShouldDismiss];
}
- (void)onNopeClicked:(id)sender {
ManagePasswordsBubbleModel* model = [self model];
if (model)
model->OnNopeUpdateClicked();
- [delegate_ viewShouldDismiss];
+ [self.delegate viewShouldDismiss];
}
- (NSView*)createPasswordView {
« no previous file with comments | « chrome/browser/ui/cocoa/passwords/save_pending_password_view_controller.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698