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

Unified Diff: content/common/websocket_messages.h

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
« no previous file with comments | « content/common/loader_test.mojom ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/websocket_messages.h
diff --git a/content/common/websocket_messages.h b/content/common/websocket_messages.h
index 383eb5a1f4a498d1951b49ff3ae7f66147587596..b73b61ea347d132d260dfc20e1013938db87cbda 100644
--- a/content/common/websocket_messages.h
+++ b/content/common/websocket_messages.h
@@ -33,6 +33,7 @@
#include <string>
#include <vector>
+#include "base/memory/shared_memory.h"
#include "content/common/content_export.h"
#include "content/common/websocket.h"
#include "ipc/ipc_message_macros.h"
@@ -193,3 +194,20 @@ IPC_MESSAGE_ROUTED3(WebSocketMsg_DropChannel,
// Notify the renderer that a closing handshake has been initiated by the
// server, so that it can set the Javascript readyState to CLOSING.
IPC_MESSAGE_ROUTED0(WebSocketMsg_NotifyClosing)
+
+
+IPC_MESSAGE_ROUTED1(WebSocketHostMsg_LoaderTransferTest_Setup,
+ int /* buffer_size */)
+
+IPC_MESSAGE_ROUTED1(WebSocketMsg_LoaderTransferTest_SetDataBuffer,
+ base::SharedMemoryHandle /* buffer_size */)
+
+IPC_MESSAGE_ROUTED2(WebSocketHostMsg_LoaderTransferTest_Send,
+ int /* data_offset */,
+ int /* data_length */)
+
+IPC_MESSAGE_ROUTED0(WebSocketHostMsg_LoaderTransferTest_Close)
+
+IPC_MESSAGE_ROUTED0(WebSocketMsg_LoaderTransferTest_Ack)
+
+IPC_MESSAGE_ROUTED0(WebSocketMsg_LoaderTransferTest_Done)
« no previous file with comments | « content/common/loader_test.mojom ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698