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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/extension_data_collection_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
Index: chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc b/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc
index 098d4de4b28051d5b52a00bed3c985909ae2977d..c78892bcf9cb614f5bbf222ceeb7bcc1c960822e 100644
--- a/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc
@@ -101,8 +101,8 @@ void ExtensionTestingProfile::AddExtension(std::string extension_id,
extension_prefs_->UpdateExtensionPref(
extension_id, "install_time", new base::StringValue(base::Int64ToString(
install_time.ToInternalValue())));
- extension_prefs_->UpdateExtensionPref(
- extension_id, "state", new base::FundamentalValue(state_value));
+ extension_prefs_->UpdateExtensionPref(extension_id, "state",
+ new base::Value(state_value));
}
void ExtensionTestingProfile::SetInstallSignature(

Powered by Google App Engine
This is Rietveld 408576698