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

Unified Diff: components/autofill/browser/address.h

Issue 13973004: Convert string16 -> base::string16 in components/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | components/autofill/browser/address.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « no previous file | components/autofill/browser/address.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698