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

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

Issue 124533003: Add country combobox to change country and rebuild address inputs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac Created 6 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/autofill/autofill_pop_up_button.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.mm b/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.mm
index edb2e02a1c09cc4c7a8aee14aa18e0b86388dd32..2312b4c70b31bab574c005f32fb4b13c87e3600d 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_pop_up_button.mm
@@ -71,8 +71,10 @@
}
- (void)didSelectItem:(id)sender {
- if (inputDelegate_)
+ if (inputDelegate_) {
+ [inputDelegate_ didChange:self];
[inputDelegate_ didEndEditing:self];
+ }
}
@end

Powered by Google App Engine
This is Rietveld 408576698