| Index: components/autofill/content/browser/wallet/full_wallet_unittest.cc
 | 
| diff --git a/components/autofill/content/browser/wallet/full_wallet_unittest.cc b/components/autofill/content/browser/wallet/full_wallet_unittest.cc
 | 
| index 6f662131ffd4bc56e170b7d1715bbe75af9fac80..59e6dd92cf0972f61d76da1155f34f141c2c5345 100644
 | 
| --- a/components/autofill/content/browser/wallet/full_wallet_unittest.cc
 | 
| +++ b/components/autofill/content/browser/wallet/full_wallet_unittest.cc
 | 
| @@ -355,12 +355,12 @@ class FullWalletTest : public testing::Test {
 | 
|    FullWalletTest() {}
 | 
|   protected:
 | 
|    void SetUpDictionary(const std::string& json) {
 | 
| -    scoped_ptr<Value> value(base::JSONReader::Read(json));
 | 
| +    scoped_ptr<base::Value> value(base::JSONReader::Read(json));
 | 
|      ASSERT_TRUE(value.get());
 | 
| -    ASSERT_TRUE(value->IsType(Value::TYPE_DICTIONARY));
 | 
| -    dict.reset(static_cast<DictionaryValue*>(value.release()));
 | 
| +    ASSERT_TRUE(value->IsType(base::Value::TYPE_DICTIONARY));
 | 
| +    dict.reset(static_cast<base::DictionaryValue*>(value.release()));
 | 
|    }
 | 
| -  scoped_ptr<DictionaryValue> dict;
 | 
| +  scoped_ptr<base::DictionaryValue> dict;
 | 
|  };
 | 
|  
 | 
|  TEST_F(FullWalletTest, CreateFullWalletMissingExpirationMonth) {
 | 
| 
 |