diff options
Diffstat (limited to 'chrome/browser/autofill/phone_field_unittest.cc')
-rw-r--r-- | chrome/browser/autofill/phone_field_unittest.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/autofill/phone_field_unittest.cc b/chrome/browser/autofill/phone_field_unittest.cc index 4f8dbd1..cd8baf5 100644 --- a/chrome/browser/autofill/phone_field_unittest.cc +++ b/chrome/browser/autofill/phone_field_unittest.cc @@ -9,7 +9,7 @@ #include "chrome/browser/autofill/autofill_scanner.h" #include "chrome/browser/autofill/phone_field.h" #include "testing/gtest/include/gtest/gtest.h" -#include "webkit/glue/form_field.h" +#include "webkit/forms/form_field.h" class PhoneFieldTest : public testing::Test { public: @@ -43,7 +43,7 @@ TEST_F(PhoneFieldTest, NonParse) { } TEST_F(PhoneFieldTest, ParseOneLinePhone) { - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("Phone"); @@ -60,7 +60,7 @@ TEST_F(PhoneFieldTest, ParseOneLinePhone) { } TEST_F(PhoneFieldTest, ParseTwoLinePhone) { - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("Area Code"); @@ -89,7 +89,7 @@ TEST_F(PhoneFieldTest, ThreePartPhoneNumber) { // <country code> - <area code> - <phone>. The only distinguishing feature is // size: <prefix> is no bigger than 3 characters, and <suffix> is no bigger // than 4. - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("Phone:"); @@ -133,7 +133,7 @@ TEST_F(PhoneFieldTest, ThreePartPhoneNumber) { // encountered in http://crbug.com/40694 with page // https://www.wrapables.com/jsp/Signup.jsp. TEST_F(PhoneFieldTest, ThreePartPhoneNumberPrefixSuffix) { - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("Phone:"); @@ -164,7 +164,7 @@ TEST_F(PhoneFieldTest, ThreePartPhoneNumberPrefixSuffix) { } TEST_F(PhoneFieldTest, ThreePartPhoneNumberPrefixSuffix2) { - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("("); @@ -200,7 +200,7 @@ TEST_F(PhoneFieldTest, ThreePartPhoneNumberPrefixSuffix2) { TEST_F(PhoneFieldTest, CountryAndCityAndPhoneNumber) { // Phone in format <country code>:3 - <city and number>:10 // The |maxlength| is considered, otherwise it's too broad. - webkit_glue::FormField field; + webkit::forms::FormField field; field.form_control_type = ASCIIToUTF16("text"); field.label = ASCIIToUTF16("Phone Number"); |