Chromium Code Reviews| Index: components/autofill/browser/address.h |
| diff --git a/components/autofill/browser/address.h b/components/autofill/browser/address.h |
| index 40896ab04c91f3b9c519948444c02d9912ee8d4f..4f22952efa6305d2e309a6e830de44ffe48862ce 100644 |
| --- a/components/autofill/browser/address.h |
| +++ b/components/autofill/browser/address.h |
| @@ -23,15 +23,15 @@ class Address : public FormGroup { |
| Address& operator=(const Address& address); |
| // FormGroup: |
| - virtual string16 GetRawInfo(AutofillFieldType type) const OVERRIDE; |
| + virtual base::string16 GetRawInfo(AutofillFieldType type) const OVERRIDE; |
| virtual void SetRawInfo(AutofillFieldType type, |
| - const string16& value) OVERRIDE; |
| - virtual string16 GetInfo(AutofillFieldType type, |
| + const base::string16& value) OVERRIDE; |
| + virtual base::string16 GetInfo(AutofillFieldType type, |
| const std::string& app_locale) const OVERRIDE; |
|
Jói
2013/04/12 09:16:33
nit: indentation
|
| virtual bool SetInfo(AutofillFieldType type, |
| - const string16& value, |
| + const base::string16& value, |
| const std::string& app_locale) OVERRIDE; |
| - virtual void GetMatchingTypes(const string16& text, |
| + virtual void GetMatchingTypes(const base::string16& text, |
| const std::string& app_locale, |
| FieldTypeSet* matching_types) const OVERRIDE; |
| @@ -40,12 +40,12 @@ class Address : public FormGroup { |
| virtual void GetSupportedTypes(FieldTypeSet* supported_types) const OVERRIDE; |
| // The address. |
| - string16 line1_; |
| - string16 line2_; |
| - string16 city_; |
| - string16 state_; |
| - string16 country_code_; |
| - string16 zip_code_; |
| + base::string16 line1_; |
| + base::string16 line2_; |
| + base::string16 city_; |
| + base::string16 state_; |
| + base::string16 country_code_; |
| + base::string16 zip_code_; |
| }; |
| #endif // COMPONENTS_AUTOFILL_BROWSER_ADDRESS_H_ |