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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/extension_data_collection_unittest.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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 c78892bcf9cb614f5bbf222ceeb7bcc1c960822e..c5141ebb20107ee626d5d1f3dc54012e34266182 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
@@ -99,8 +99,8 @@ void ExtensionTestingProfile::AddExtension(std::string extension_id,
extension_service_->AddExtension(extension.get());
extension_prefs_->UpdateExtensionPref(
- extension_id, "install_time", new base::StringValue(base::Int64ToString(
- install_time.ToInternalValue())));
+ extension_id, "install_time",
+ new base::Value(base::Int64ToString(install_time.ToInternalValue())));
extension_prefs_->UpdateExtensionPref(extension_id, "state",
new base::Value(state_value));
}

Powered by Google App Engine
This is Rietveld 408576698