| 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) {
 | 
| 
 |