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

Unified Diff: components/autofill/content/browser/wallet/wallet_address_unittest.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_address_unittest.cc
diff --git a/components/autofill/content/browser/wallet/wallet_address_unittest.cc b/components/autofill/content/browser/wallet/wallet_address_unittest.cc
index 728d635954efc6b2dbf99475628944b2771cc0e6..3fc18829bbfa8b3761cafe87dedc97d723740020 100644
--- a/components/autofill/content/browser/wallet/wallet_address_unittest.cc
+++ b/components/autofill/content/browser/wallet/wallet_address_unittest.cc
@@ -162,12 +162,12 @@ class WalletAddressTest : public testing::Test {
WalletAddressTest() {}
protected:
void SetUpDictionary(const std::string& json) {
- scoped_ptr<Value> value(base::JSONReader::Read(json));
+ scoped_ptr<base::Value> value(base::JSONReader::Read(json));
DCHECK(value.get());
- DCHECK(value->IsType(Value::TYPE_DICTIONARY));
- dict_.reset(static_cast<DictionaryValue*>(value.release()));
+ DCHECK(value->IsType(base::Value::TYPE_DICTIONARY));
+ dict_.reset(static_cast<base::DictionaryValue*>(value.release()));
}
- scoped_ptr<const DictionaryValue> dict_;
+ scoped_ptr<const base::DictionaryValue> dict_;
};
TEST_F(WalletAddressTest, AddressEqualsIgnoreID) {

Powered by Google App Engine
This is Rietveld 408576698