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

Unified Diff: chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate_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/preference_validation_delegate_unittest.cc
diff --git a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate_unittest.cc b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate_unittest.cc
index ec2c18fdf4a75b584e64128c082e7411771d4057..7eb3d964737b310bce418ce0aa56326bbd7d7b9d 100644
--- a/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate_unittest.cc
+++ b/chrome/browser/safe_browsing/incident_reporting/preference_validation_delegate_unittest.cc
@@ -139,7 +139,7 @@ class PreferenceValidationDelegateValues
case Value::Type::DOUBLE:
return std::unique_ptr<Value>(new base::Value(0.47));
case Value::Type::STRING:
- return std::unique_ptr<Value>(new base::StringValue("i have a spleen"));
+ return std::unique_ptr<Value>(new base::Value("i have a spleen"));
case Value::Type::DICTIONARY: {
std::unique_ptr<base::DictionaryValue> value(
new base::DictionaryValue());

Powered by Google App Engine
This is Rietveld 408576698