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

Unified Diff: components/autofill/content/browser/wallet/wallet_client.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/wallet_client.cc
diff --git a/components/autofill/content/browser/wallet/wallet_client.cc b/components/autofill/content/browser/wallet/wallet_client.cc
index 9e4f5f28e20c32927174d1f3ab701f97ab715b57..c5475cd8f94901f51b20cb7b208273c945e4e863 100644
--- a/components/autofill/content/browser/wallet/wallet_client.cc
+++ b/components/autofill/content/browser/wallet/wallet_client.cc
@@ -590,9 +590,9 @@ void WalletClient::OnURLFetchComplete(
// error code and message for the user.
case net::HTTP_OK:
case net::HTTP_INTERNAL_SERVER_ERROR: {
- scoped_ptr<Value> message_value(base::JSONReader::Read(data));
+ scoped_ptr<base::Value> message_value(base::JSONReader::Read(data));
if (message_value.get() &&
- message_value->IsType(Value::TYPE_DICTIONARY)) {
+ message_value->IsType(base::Value::TYPE_DICTIONARY)) {
response_dict.reset(
static_cast<base::DictionaryValue*>(message_value.release()));
}

Powered by Google App Engine
This is Rietveld 408576698