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

Unified Diff: extensions/browser/value_store/value_store_frontend_unittest.cc

Issue 415423002: Remove Create*Value (except CreateNullValue) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months 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: extensions/browser/value_store/value_store_frontend_unittest.cc
diff --git a/extensions/browser/value_store/value_store_frontend_unittest.cc b/extensions/browser/value_store/value_store_frontend_unittest.cc
index 82c24cede1f3849f079669d7a424abf797318160..f2e3a469fe5b1add6036f1387779c095d915a6ab 100644
--- a/extensions/browser/value_store/value_store_frontend_unittest.cc
+++ b/extensions/browser/value_store/value_store_frontend_unittest.cc
@@ -86,8 +86,7 @@ TEST_F(ValueStoreFrontendTest, GetExistingData) {
}
TEST_F(ValueStoreFrontendTest, ChangesPersistAfterReload) {
- storage_->Set("key0",
- scoped_ptr<base::Value>(base::Value::CreateIntegerValue(0)));
+ storage_->Set("key0", scoped_ptr<base::Value>(new base::FundamentalValue(0)));
storage_->Set("key1", scoped_ptr<base::Value>(new base::StringValue("new1")));
storage_->Remove("key2");
« no previous file with comments | « components/search_engines/default_search_pref_test_util.cc ('k') | net/test/spawned_test_server/base_test_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698