| Index: components/autofill/browser/wallet/full_wallet.cc
|
| diff --git a/components/autofill/browser/wallet/full_wallet.cc b/components/autofill/browser/wallet/full_wallet.cc
|
| index 9e9fb0392b0cc4ed77ab0577ddfc618a152426b9..b68c1aa2a0e1c58d75fb17346a8d5f56ad1f851c 100644
|
| --- a/components/autofill/browser/wallet/full_wallet.cc
|
| +++ b/components/autofill/browser/wallet/full_wallet.cc
|
| @@ -124,7 +124,7 @@ scoped_ptr<FullWallet>
|
| required_actions));
|
| }
|
|
|
| -string16 FullWallet::GetInfo(AutofillFieldType type) {
|
| +base::string16 FullWallet::GetInfo(AutofillFieldType type) {
|
| switch (type) {
|
| case CREDIT_CARD_NUMBER:
|
| return UTF8ToUTF16(GetPan());
|
| @@ -145,7 +145,7 @@ string16 FullWallet::GetInfo(AutofillFieldType type) {
|
| NOTREACHED();
|
| }
|
|
|
| - return string16();
|
| + return base::string16();
|
| }
|
|
|
| bool FullWallet::HasRequiredAction(RequiredAction action) const {
|
|
|