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

Unified Diff: sky/engine/bindings/templates/methods.cpp

Issue 676723003: Remove postMessage, MessageChannel and MessagePort. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « sky/engine/bindings/core/v8/v8.gypi ('k') | sky/engine/core/core.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/templates/methods.cpp
diff --git a/sky/engine/bindings/templates/methods.cpp b/sky/engine/bindings/templates/methods.cpp
index c244456ed125fde3d3ee7d8c0ecc36ee73750063..3c925f131b75bf27bbc80a1e8c6c8f2397cdd040 100644
--- a/sky/engine/bindings/templates/methods.cpp
+++ b/sky/engine/bindings/templates/methods.cpp
@@ -175,7 +175,7 @@ if (!std::isnan({{argument.name}}NativeValue))
IDL integer types have same internal C++ type (int or unsigned) #}
{{argument.name}} = clampTo<{{argument.idl_type}}>({{argument.name}}NativeValue);
{% elif argument.idl_type == 'SerializedScriptValue' %}
-{{argument.name}} = SerializedScriptValue::create(info[{{argument.index}}], 0, 0, exceptionState, info.GetIsolate());
+{{argument.name}} = SerializedScriptValue::create(info[{{argument.index}}], 0, exceptionState, info.GetIsolate());
if (exceptionState.hadException()) {
{{throw_from_exception_state(method)}};
return;
« no previous file with comments | « sky/engine/bindings/core/v8/v8.gypi ('k') | sky/engine/core/core.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698