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

Unified Diff: components/ownership/owner_settings_service.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: components/ownership/owner_settings_service.cc
diff --git a/components/ownership/owner_settings_service.cc b/components/ownership/owner_settings_service.cc
index 6fbd902963862fd5ba738953f8fb02e536bb4d46..ca969d2a45d86bbb4912c7db073b9fd31176c06c 100644
--- a/components/ownership/owner_settings_service.cc
+++ b/components/ownership/owner_settings_service.cc
@@ -137,7 +137,7 @@ bool OwnerSettingsService::SetDouble(const std::string& setting, double value) {
bool OwnerSettingsService::SetString(const std::string& setting,
const std::string& value) {
DCHECK(thread_checker_.CalledOnValidThread());
- base::StringValue in_value(value);
+ base::Value in_value(value);
return Set(setting, in_value);
}

Powered by Google App Engine
This is Rietveld 408576698