Index: chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.js |
diff --git a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.js b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.js |
index 4d3b0f5d9bd953f3cf909aae987316c7d2ff6b03..c9704a875e47d3c3a9cc60db462a02d8a52ef8e1 100644 |
--- a/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.js |
+++ b/chrome/browser/resources/settings/passwords_and_forms_page/autofill_section.js |
@@ -72,8 +72,8 @@ |
* @private |
*/ |
onAddAddressTap_: function(e) { |
- // TODO(hcarmona): implement adding an address. |
e.preventDefault(); |
+ this.$.addressEditDialog.open({}); |
}, |
/** |
@@ -81,7 +81,8 @@ |
* @private |
*/ |
onMenuEditAddressTap_: function() { |
- // TODO(hcarmona): implement editing an address. |
+ var menu = this.$.addressSharedMenu; |
+ this.$.addressEditDialog.open(menu.itemData); |
this.$.addressSharedMenu.closeMenu(); |
}, |