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

Unified Diff: components/autofill/content/browser/wallet/full_wallet_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/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) {

Powered by Google App Engine
This is Rietveld 408576698