| Index: components/autofill/content/browser/wallet/full_wallet.cc
|
| diff --git a/components/autofill/content/browser/wallet/full_wallet.cc b/components/autofill/content/browser/wallet/full_wallet.cc
|
| index f66b28a98577da9ecde0e7e385e4fc00411d4345..4a13b4f3b01439cfb1371d4a8b743d65698e8fd1 100644
|
| --- a/components/autofill/content/browser/wallet/full_wallet.cc
|
| +++ b/components/autofill/content/browser/wallet/full_wallet.cc
|
| @@ -44,8 +44,8 @@ FullWallet::~FullWallet() {}
|
|
|
| // static
|
| scoped_ptr<FullWallet>
|
| - FullWallet::CreateFullWallet(const DictionaryValue& dictionary) {
|
| - const ListValue* required_actions_list;
|
| + FullWallet::CreateFullWallet(const base::DictionaryValue& dictionary) {
|
| + const base::ListValue* required_actions_list;
|
| std::vector<RequiredAction> required_actions;
|
| if (dictionary.GetList("required_action", &required_actions_list)) {
|
| for (size_t i = 0; i < required_actions_list->GetSize(); ++i) {
|
| @@ -97,7 +97,7 @@ scoped_ptr<FullWallet>
|
| return scoped_ptr<FullWallet>();
|
| }
|
|
|
| - const DictionaryValue* billing_address_dict;
|
| + const base::DictionaryValue* billing_address_dict;
|
| if (!dictionary.GetDictionary("billing_address", &billing_address_dict)) {
|
| DLOG(ERROR) << "Response from Google wallet missing billing address";
|
| return scoped_ptr<FullWallet>();
|
| @@ -110,7 +110,7 @@ scoped_ptr<FullWallet>
|
| return scoped_ptr<FullWallet>();
|
| }
|
|
|
| - const DictionaryValue* shipping_address_dict;
|
| + const base::DictionaryValue* shipping_address_dict;
|
| scoped_ptr<Address> shipping_address;
|
| if (dictionary.GetDictionary("shipping_address", &shipping_address_dict)) {
|
| shipping_address =
|
|
|