| Index: components/autofill/browser/personal_data_manager.h
|
| diff --git a/components/autofill/browser/personal_data_manager.h b/components/autofill/browser/personal_data_manager.h
|
| index 311a52a1c0f2a9f489df6fd8d31398735a1ce532..0f8a6ff1e8f3cf10ac82d09f7cd37fab53f330ce 100644
|
| --- a/components/autofill/browser/personal_data_manager.h
|
| +++ b/components/autofill/browser/personal_data_manager.h
|
| @@ -128,12 +128,12 @@ class PersonalDataManager : public WebDataServiceConsumer,
|
| // form. Identifying info is loaded into the last four outparams.
|
| void GetProfileSuggestions(
|
| AutofillFieldType type,
|
| - const string16& field_contents,
|
| + const base::string16& field_contents,
|
| bool field_is_autofilled,
|
| std::vector<AutofillFieldType> other_field_types,
|
| - std::vector<string16>* values,
|
| - std::vector<string16>* labels,
|
| - std::vector<string16>* icons,
|
| + std::vector<base::string16>* values,
|
| + std::vector<base::string16>* labels,
|
| + std::vector<base::string16>* icons,
|
| std::vector<GUIDPair>* guid_pairs);
|
|
|
| // Gets credit cards that can suggest data for |type|. See
|
| @@ -141,10 +141,10 @@ class PersonalDataManager : public WebDataServiceConsumer,
|
| // GUID pair should be ignored.
|
| void GetCreditCardSuggestions(
|
| AutofillFieldType type,
|
| - const string16& field_contents,
|
| - std::vector<string16>* values,
|
| - std::vector<string16>* labels,
|
| - std::vector<string16>* icons,
|
| + const base::string16& field_contents,
|
| + std::vector<base::string16>* values,
|
| + std::vector<base::string16>* labels,
|
| + std::vector<base::string16>* icons,
|
| std::vector<GUIDPair>* guid_pairs);
|
|
|
| // Re-loads profiles and credit cards from the WebDatabase asynchronously.
|
|
|