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

Unified Diff: components/webdata/autofill/autofill_webdata_service.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_service.h
diff --git a/components/webdata/autofill/autofill_webdata_service.h b/components/webdata/autofill/autofill_webdata_service.h
index b5ef156313c4455ed443144e9c90fec2b64a8c5f..6b9ee4bf0652584955b65c98a71aaba3ac506d24 100644
--- a/components/webdata/autofill/autofill_webdata_service.h
+++ b/components/webdata/autofill/autofill_webdata_service.h
@@ -53,15 +53,16 @@ class AutofillWebDataService : public AutofillWebData,
virtual void AddFormFields(
const std::vector<FormFieldData>& fields) OVERRIDE;
virtual WebDataServiceBase::Handle GetFormValuesForElementName(
- const string16& name,
- const string16& prefix,
+ const base::string16& name,
+ const base::string16& prefix,
int limit,
WebDataServiceConsumer* consumer) OVERRIDE;
virtual void RemoveFormElementsAddedBetween(
const base::Time& delete_begin, const base::Time& delete_end) OVERRIDE;
virtual void RemoveExpiredFormElements() OVERRIDE;
- virtual void RemoveFormValueForElementName(const string16& name,
- const string16& value) OVERRIDE;
+ virtual void RemoveFormValueForElementName(
+ const base::string16& name,
+ const base::string16& value) OVERRIDE;
virtual void AddAutofillProfile(const AutofillProfile& profile) OVERRIDE;
virtual void UpdateAutofillProfile(const AutofillProfile& profile) OVERRIDE;
virtual void RemoveAutofillProfile(const std::string& guid) OVERRIDE;
@@ -91,13 +92,14 @@ class AutofillWebDataService : public AutofillWebData,
WebDatabase::State AddFormElementsImpl(
const std::vector<FormFieldData>& fields, WebDatabase* db);
scoped_ptr<WDTypedResult> GetFormValuesForElementNameImpl(
- const string16& name, const string16& prefix, int limit, WebDatabase* db);
+ const base::string16& name, const base::string16& prefix, int limit,
+ WebDatabase* db);
WebDatabase::State RemoveFormElementsAddedBetweenImpl(
const base::Time& delete_begin, const base::Time& delete_end,
WebDatabase* db);
WebDatabase::State RemoveExpiredFormElementsImpl(WebDatabase* db);
WebDatabase::State RemoveFormValueForElementNameImpl(
- const string16& name, const string16& value, WebDatabase* db);
+ const base::string16& name, const base::string16& value, WebDatabase* db);
WebDatabase::State AddAutofillProfileImpl(
const AutofillProfile& profile, WebDatabase* db);
WebDatabase::State UpdateAutofillProfileImpl(

Powered by Google App Engine
This is Rietveld 408576698