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

Unified Diff: chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm

Issue 25405003: [rAC, OSX] saveInChrome status now persistent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fix. Created 7 years, 3 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/autofill/autofill_dialog_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
index e4b4694031160e469665c0f469d9c253217dd9ca..5d21ba1fc28b3940f6b8141b86c051d4b67a33c2 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_dialog_cocoa.mm
@@ -496,11 +496,13 @@ void AutofillDialogCocoa::OnConstrainedWindowClosed(
- (void)updateSection:(autofill::DialogSection)section {
[[mainContainer_ sectionForId:section] update];
+ [mainContainer_ updateSaveInChrome];
}
- (void)fillSection:(autofill::DialogSection)section
forInput:(const autofill::DetailInput&)input {
[[mainContainer_ sectionForId:section] fillForInput:input];
+ [mainContainer_ updateSaveInChrome];
}
- (content::NavigationController*)showSignIn {

Powered by Google App Engine
This is Rietveld 408576698