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

Unified Diff: components/autofill/content/browser/wallet/full_wallet.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/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 =
« no previous file with comments | « cloud_print/service/service_state.cc ('k') | components/autofill/content/browser/wallet/full_wallet_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698