Index: chrome/browser/ui/autofill/autofill_dialog_common.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_common.cc b/chrome/browser/ui/autofill/autofill_dialog_common.cc |
index 18c844adb63b805701e93588bb86fd01b166c22a..2a3eeb2e634cef7b4873816f623a56181ec6587f 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_common.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_common.cc |
@@ -37,8 +37,9 @@ bool ServerTypeEncompassesFieldType(ServerFieldType type, |
// The page may ask for individual address lines; this roughly matches the |
// street address blob. |
- if (server_type == ADDRESS_HOME_LINE1 || server_type == ADDRESS_HOME_LINE2 || |
- field_type.html_type() == HTML_TYPE_FULL_ADDRESS) { |
+ if (server_type == ADDRESS_HOME_LINE1 || |
+ server_type == ADDRESS_HOME_LINE2 || |
+ server_type == ADDRESS_HOME_LINE3) { |
return autofill_type.GetStorableType() == ADDRESS_HOME_STREET_ADDRESS; |
} |