| 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;
|
|
|