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

Unified Diff: content/shell/test_runner/tracked_dictionary.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 | « content/shell/browser/shell_devtools_frontend.cc ('k') | dbus/values_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/test_runner/tracked_dictionary.cc
diff --git a/content/shell/test_runner/tracked_dictionary.cc b/content/shell/test_runner/tracked_dictionary.cc
index 99f6b35cb829e645d8480f870305656c1f885f6a..eaeba5fe86cc98985a8f871ee650f6a8bed2b128 100644
--- a/content/shell/test_runner/tracked_dictionary.cc
+++ b/content/shell/test_runner/tracked_dictionary.cc
@@ -40,7 +40,7 @@ void TrackedDictionary::Set(const std::string& path,
}
void TrackedDictionary::SetBoolean(const std::string& path, bool new_value) {
- Set(path, base::MakeUnique<base::FundamentalValue>(new_value));
+ Set(path, base::MakeUnique<base::Value>(new_value));
}
void TrackedDictionary::SetString(const std::string& path,
« no previous file with comments | « content/shell/browser/shell_devtools_frontend.cc ('k') | dbus/values_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698