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

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

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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
« no previous file with comments | « extensions/browser/extension_prefs.cc ('k') | extensions/common/value_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6d2285b3927d8cbaa427c6580a88aaf851be0b0b..abc33a94cff2b3a719473c9a3e5e5b6dc551c07e 100644
--- a/extensions/browser/value_store/value_store_frontend_unittest.cc
+++ b/extensions/browser/value_store/value_store_frontend_unittest.cc
@@ -95,8 +95,7 @@ TEST_F(ValueStoreFrontendTest, GetExistingData) {
}
TEST_F(ValueStoreFrontendTest, ChangesPersistAfterReload) {
- storage_->Set("key0",
- std::unique_ptr<base::Value>(new base::FundamentalValue(0)));
+ storage_->Set("key0", std::unique_ptr<base::Value>(new base::Value(0)));
storage_->Set("key1",
std::unique_ptr<base::Value>(new base::StringValue("new1")));
storage_->Remove("key2");
« no previous file with comments | « extensions/browser/extension_prefs.cc ('k') | extensions/common/value_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698