2020-03-12 01:07:54 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jeremy Apthorp <nornagon@nornagon.net>
|
|
|
|
Date: Fri, 25 Oct 2019 11:23:03 -0700
|
|
|
|
Subject: add WebMessagePortConverter::EntangleAndInjectMessagePortChannel
|
|
|
|
|
|
|
|
This adds a method to the public Blink API that would otherwise require
|
|
|
|
accessing Blink internals. Its inverse, which already exists, is used in
|
|
|
|
Android WebView.
|
|
|
|
|
|
|
|
diff --git a/third_party/blink/public/web/web_message_port_converter.h b/third_party/blink/public/web/web_message_port_converter.h
|
2022-10-03 20:21:00 +00:00
|
|
|
index a58ddcc8f6e79d3288d0c645875c8b1bbdaaf209..1283bd18cce78bc5eaad71b3fad01031b54d1ab3 100644
|
2020-03-12 01:07:54 +00:00
|
|
|
--- a/third_party/blink/public/web/web_message_port_converter.h
|
|
|
|
+++ b/third_party/blink/public/web/web_message_port_converter.h
|
|
|
|
@@ -13,6 +13,7 @@ class Isolate;
|
|
|
|
template <class T>
|
|
|
|
class Local;
|
|
|
|
class Value;
|
|
|
|
+class Context;
|
|
|
|
} // namespace v8
|
|
|
|
|
|
|
|
namespace blink {
|
2022-10-03 20:21:00 +00:00
|
|
|
@@ -25,6 +26,9 @@ class BLINK_EXPORT WebMessagePortConverter {
|
2020-03-12 01:07:54 +00:00
|
|
|
// neutered, it will return nullopt.
|
2022-10-03 20:21:00 +00:00
|
|
|
static absl::optional<MessagePortChannel>
|
2020-03-12 01:07:54 +00:00
|
|
|
DisentangleAndExtractMessagePortChannel(v8::Isolate*, v8::Local<v8::Value>);
|
|
|
|
+
|
|
|
|
+ BLINK_EXPORT static v8::Local<v8::Value>
|
|
|
|
+ EntangleAndInjectMessagePortChannel(v8::Local<v8::Context>, MessagePortChannel);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace blink
|
|
|
|
diff --git a/third_party/blink/renderer/core/exported/web_message_port_converter.cc b/third_party/blink/renderer/core/exported/web_message_port_converter.cc
|
2022-10-03 20:21:00 +00:00
|
|
|
index f440ee59be4ed14760f2948751f31f7ea3d42e2a..654fbb2d12c9fe7cb362d792ede64c9d1f8c099f 100644
|
2020-03-12 01:07:54 +00:00
|
|
|
--- a/third_party/blink/renderer/core/exported/web_message_port_converter.cc
|
|
|
|
+++ b/third_party/blink/renderer/core/exported/web_message_port_converter.cc
|
2020-08-12 18:33:58 +00:00
|
|
|
@@ -6,6 +6,7 @@
|
|
|
|
|
|
|
|
#include "third_party/blink/public/common/messaging/message_port_channel.h"
|
|
|
|
#include "third_party/blink/renderer/bindings/core/v8/script_value.h"
|
|
|
|
+#include "third_party/blink/renderer/bindings/core/v8/v8_binding_for_core.h"
|
|
|
|
#include "third_party/blink/renderer/bindings/core/v8/v8_message_port.h"
|
|
|
|
#include "third_party/blink/renderer/core/messaging/message_port.h"
|
|
|
|
|
|
|
|
@@ -21,4 +22,15 @@ WebMessagePortConverter::DisentangleAndExtractMessagePortChannel(
|
2020-03-12 01:07:54 +00:00
|
|
|
return port->Disentangle();
|
|
|
|
}
|
|
|
|
|
|
|
|
+v8::Local<v8::Value>
|
|
|
|
+WebMessagePortConverter::EntangleAndInjectMessagePortChannel(
|
|
|
|
+ v8::Local<v8::Context> context,
|
|
|
|
+ MessagePortChannel port_channel) {
|
|
|
|
+ auto* execution_context = ToExecutionContext(context);
|
|
|
|
+ CHECK(execution_context);
|
|
|
|
+ auto* port = MakeGarbageCollected<MessagePort>(*execution_context);
|
|
|
|
+ port->Entangle(std::move(port_channel));
|
|
|
|
+ return ToV8(port, context->Global(), context->GetIsolate());
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
} // namespace blink
|