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

Unified Diff: content/browser/devtools/protocol/devtools_protocol_handler_generator.py

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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/browser/appcache/appcache_internals_ui.cc ('k') | content/browser/devtools/protocol_string.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol/devtools_protocol_handler_generator.py
diff --git a/content/browser/devtools/protocol/devtools_protocol_handler_generator.py b/content/browser/devtools/protocol/devtools_protocol_handler_generator.py
index 00a4d2f38b83b6122d0ee76fe080a4e958635a3f..8154158089025c9daa658071ad9536c7e72dc975 100755
--- a/content/browser/devtools/protocol/devtools_protocol_handler_generator.py
+++ b/content/browser/devtools/protocol/devtools_protocol_handler_generator.py
@@ -45,7 +45,7 @@ bool IsSupportedProtocolVersion(const std::string& version);
template<typename T>
std::unique_ptr<base::Value> CreateValue(const T& param) {
- return base::MakeUnique<base::FundamentalValue>(param);
+ return base::MakeUnique<base::Value>(param);
}
template<typename T>
« no previous file with comments | « content/browser/appcache/appcache_internals_ui.cc ('k') | content/browser/devtools/protocol_string.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698