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

Unified Diff: third_party/inspector_protocol/lib/ValueConversions_h.template

Issue 2522583002: Roll third_party/inspector_protocol to 4ad35c45aca9834b67ec2cb152c816ea1b7ceb48 (Closed)
Patch Set: addressed comments 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
Index: third_party/inspector_protocol/lib/ValueConversions_h.template
diff --git a/third_party/inspector_protocol/lib/ValueConversions_h.template b/third_party/inspector_protocol/lib/ValueConversions_h.template
index 5384c7bb1e29f8390673487fabf34a79ba9ecbdf..1077158219f905ead1ef220a0928c3dd2636a16e 100644
--- a/third_party/inspector_protocol/lib/ValueConversions_h.template
+++ b/third_party/inspector_protocol/lib/ValueConversions_h.template
@@ -22,12 +22,12 @@ struct ValueConversions {
static std::unique_ptr<protocol::Value> serialize(T* value)
{
- return value->serialize();
+ return value->serializeValue();
}
static std::unique_ptr<protocol::Value> serialize(const std::unique_ptr<T>& value)
{
- return value->serialize();
+ return value->serializeValue();
}
};

Powered by Google App Engine
This is Rietveld 408576698