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

Unified Diff: components/autofill/content/browser/wallet/wallet_items_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_items_unittest.cc
diff --git a/components/autofill/content/browser/wallet/wallet_items_unittest.cc b/components/autofill/content/browser/wallet/wallet_items_unittest.cc
index 02217be0b2ca4dbcacec916057022d7edf6c6ed6..f0f299b14659ba712c15fbf4f5b6fc69b420528d 100644
--- a/components/autofill/content/browser/wallet/wallet_items_unittest.cc
+++ b/components/autofill/content/browser/wallet/wallet_items_unittest.cc
@@ -393,12 +393,12 @@ class WalletItemsTest : public testing::Test {
WalletItemsTest() {}
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(WalletItemsTest, CreateMaskedInstrumentMissingStatus) {
« no previous file with comments | « components/autofill/content/browser/wallet/wallet_items.cc ('k') | components/dom_distiller/webui/dom_distiller_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698