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

Unified Diff: components/webdata/autofill/autofill_webdata.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_webdata.h
diff --git a/components/webdata/autofill/autofill_webdata.h b/components/webdata/autofill/autofill_webdata.h
index c81afc1babcd52e20216b76c1ea066647908a85b..1fe8391ec4aeed7a0602a504c2dbbf9109351c4f 100644
--- a/components/webdata/autofill/autofill_webdata.h
+++ b/components/webdata/autofill/autofill_webdata.h
@@ -33,8 +33,8 @@ class AutofillWebData {
// |consumer| gets called back when the request is finished, with the vector
// included in the argument |result|.
virtual WebDataServiceBase::Handle GetFormValuesForElementName(
- const string16& name,
- const string16& prefix,
+ const base::string16& name,
+ const base::string16& prefix,
int limit,
WebDataServiceConsumer* consumer) = 0;
@@ -43,8 +43,8 @@ class AutofillWebData {
const base::Time& delete_begin, const base::Time& delete_end) = 0;
virtual void RemoveExpiredFormElements() = 0;
- virtual void RemoveFormValueForElementName(const string16& name,
- const string16& value) = 0;
+ virtual void RemoveFormValueForElementName(const base::string16& name,
+ const base::string16& value) = 0;
// Schedules a task to add an Autofill profile to the web database.
virtual void AddAutofillProfile(const AutofillProfile& profile) = 0;

Powered by Google App Engine
This is Rietveld 408576698