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

Unified Diff: components/webdata/autofill/autofill_entry.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
Index: components/webdata/autofill/autofill_entry.h
diff --git a/components/webdata/autofill/autofill_entry.h b/components/webdata/autofill/autofill_entry.h
index 0aed9b1eb36c768b88d722c518c5c024891f792c..66eb273cfe186f9b0c37146b33776b9adb6acd5f 100644
--- a/components/webdata/autofill/autofill_entry.h
+++ b/components/webdata/autofill/autofill_entry.h
@@ -15,20 +15,20 @@
class AutofillKey {
public:
AutofillKey();
- AutofillKey(const string16& name, const string16& value);
+ AutofillKey(const base::string16& name, const base::string16& value);
AutofillKey(const char* name, const char* value);
AutofillKey(const AutofillKey& key);
virtual ~AutofillKey();
- const string16& name() const { return name_; }
- const string16& value() const { return value_; }
+ const base::string16& name() const { return name_; }
+ const base::string16& value() const { return value_; }
bool operator==(const AutofillKey& key) const;
bool operator<(const AutofillKey& key) const;
private:
- string16 name_;
- string16 value_;
+ base::string16 name_;
+ base::string16 value_;
};
class AutofillEntry {

Powered by Google App Engine
This is Rietveld 408576698