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

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

Issue 63053003: Ask libaddressinput for address components to use in requestAutocomplete(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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_section_container_unittest.mm
diff --git a/chrome/browser/ui/cocoa/autofill/autofill_section_container_unittest.mm b/chrome/browser/ui/cocoa/autofill/autofill_section_container_unittest.mm
index 4a7d46b493466afef5fce084a8d95c17ac1dd4e1..1ce00c661c0b11f5ee64c2751a9c697eb21221ac 100644
--- a/chrome/browser/ui/cocoa/autofill/autofill_section_container_unittest.mm
+++ b/chrome/browser/ui/cocoa/autofill/autofill_section_container_unittest.mm
@@ -119,9 +119,7 @@ TEST_F(AutofillSectionContainerTest, OutputMatchesDefinition) {
using namespace testing;
const DetailInput kTestInputs[] = {
- { DetailInput::LONG,
- EMAIL_ADDRESS,
- IDS_AUTOFILL_DIALOG_PLACEHOLDER_EMAIL },
+ { DetailInput::LONG, EMAIL_ADDRESS },
{ DetailInput::SHORT, CREDIT_CARD_EXP_MONTH },
};
autofill::MonthComboboxModel comboModel;
@@ -184,9 +182,7 @@ TEST_F(AutofillSectionContainerTest, FieldsAreInitiallyValid) {
using namespace testing;
const DetailInput kTestInputs[] = {
- { DetailInput::LONG,
- EMAIL_ADDRESS,
- IDS_AUTOFILL_DIALOG_PLACEHOLDER_EMAIL },
+ { DetailInput::LONG, EMAIL_ADDRESS },
{ DetailInput::SHORT, CREDIT_CARD_EXP_MONTH },
};
@@ -214,8 +210,8 @@ TEST_F(AutofillSectionContainerTest, ControllerInformsValidity) {
using namespace testing;
const DetailInput kTestInputs[] = {
- { DetailInput::LONG, EMAIL_ADDRESS, IDS_AUTOFILL_DIALOG_PLACEHOLDER_EMAIL },
- { DetailInput::SHORT, CREDIT_CARD_EXP_MONTH }
+ { DetailInput::LONG, EMAIL_ADDRESS },
+ { DetailInput::SHORT, CREDIT_CARD_EXP_MONTH },
};
MonthComboboxModel comboModel;

Powered by Google App Engine
This is Rietveld 408576698