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

Unified Diff: third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl

Issue 2734173002: postMessage(): transfer allocation costs along with value. (Closed)
Patch Set: rebased upto r455878 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: third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
diff --git a/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl b/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
index 212b495db59cbeded62532ba0ee5dc4ed810f360..33cbc14eebec1efcfb8e2649285cd02dd8cf9d44 100644
--- a/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
+++ b/third_party/WebKit/Source/bindings/templates/methods.cpp.tmpl
@@ -465,7 +465,8 @@ static void postMessageImpl(const char* interfaceName, {{cpp_class}}* instance,
// FIXME: Only pass scriptState/exceptionState if instance really requires it.
ScriptState* scriptState = ScriptState::current(info.GetIsolate());
- instance->postMessage(scriptState, message.release(), transferables.messagePorts, exceptionState);
+ instance->postMessage(scriptState, message.get(), transferables.messagePorts, exceptionState);
+ message->unregisterMemoryAllocatedByCurrentScriptContext();
}
{% endmacro %}

Powered by Google App Engine
This is Rietveld 408576698