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

Unified Diff: components/autofill/browser/personal_data_manager.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/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.

Powered by Google App Engine
This is Rietveld 408576698