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

Unified Diff: third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp

Issue 1461283002: [DO NOT COMMIT] mojo datapipe performance measurement Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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/modules/websockets/DocumentWebSocketChannel.cpp
diff --git a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
index ca91d4b9367fc35e544d558094b396e5dba52f12..1225a823e666c675ab1384669c94024f06353b8f 100644
--- a/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
+++ b/third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp
@@ -576,6 +576,12 @@ void DocumentWebSocketChannel::didFailLoadingBlob(FileError::ErrorCode errorCode
// |this| can be deleted here.
}
+void DocumentWebSocketChannel::loaderTestTransmit(WebSocketHandle::LoaderTestIPC ipc, bool verifyData, size_t bucketSize, size_t bufferSize, size_t totalSize, WebCallbacks<int, void>* callbacks)
+{
+ m_handle->loaderTestTransmit(ipc, verifyData, bucketSize, bufferSize, totalSize, callbacks);
+}
+
+
DEFINE_TRACE(DocumentWebSocketChannel)
{
visitor->trace(m_blobLoader);

Powered by Google App Engine
This is Rietveld 408576698