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

Unified Diff: third_party/WebKit/Source/core/dom/MessagePort.cpp

Issue 2414333003: WebMessaging: Send transferable ArrayBuffers by copy-and-neuter semantics (Closed)
Patch Set: fix tests Created 4 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
Index: third_party/WebKit/Source/core/dom/MessagePort.cpp
diff --git a/third_party/WebKit/Source/core/dom/MessagePort.cpp b/third_party/WebKit/Source/core/dom/MessagePort.cpp
index 52f8fa34ba9351d0e3e91df03345b3bb58ad4a73..683ffd63e7eed58af963e9b992c7b927678a17f9 100644
--- a/third_party/WebKit/Source/core/dom/MessagePort.cpp
+++ b/third_party/WebKit/Source/core/dom/MessagePort.cpp
@@ -35,7 +35,6 @@
#include "core/dom/ExecutionContextTask.h"
#include "core/events/MessageEvent.h"
#include "core/frame/LocalDOMWindow.h"
-#include "core/inspector/ConsoleMessage.h"
#include "core/workers/WorkerGlobalScope.h"
#include "public/platform/WebString.h"
#include "wtf/Functional.h"
@@ -86,12 +85,6 @@ void MessagePort::postMessage(ExecutionContext* context,
if (exceptionState.hadException())
return;
- if (message->containsTransferableArrayBuffer())
- getExecutionContext()->addConsoleMessage(ConsoleMessage::create(
- JSMessageSource, WarningMessageLevel,
- "MessagePort cannot send an ArrayBuffer as a transferable object yet. "
- "See http://crbug.com/334408"));
-
WebString messageString = message->toWireString();
std::unique_ptr<WebMessagePortChannelArray> webChannels =
toWebMessagePortChannelArray(std::move(channels));
« no previous file with comments | « third_party/WebKit/Source/core/dom/MessagePort.h ('k') | third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698