| Index: content/browser/renderer_host/websocket_dispatcher_host.h
|
| diff --git a/content/browser/renderer_host/websocket_dispatcher_host.h b/content/browser/renderer_host/websocket_dispatcher_host.h
|
| index 5d5c804ddf3e98edb607403c52b889fada6560da..dae1a26876e33acc1eb81849cd67f9c90401d4bd 100644
|
| --- a/content/browser/renderer_host/websocket_dispatcher_host.h
|
| +++ b/content/browser/renderer_host/websocket_dispatcher_host.h
|
| @@ -14,6 +14,7 @@
|
| #include "base/containers/hash_tables.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| +#include "base/memory/shared_memory.h"
|
| #include "base/time/time.h"
|
| #include "base/timer/timer.h"
|
| #include "content/common/content_export.h"
|
| @@ -125,6 +126,10 @@ class CONTENT_EXPORT WebSocketDispatcherHost : public BrowserMessageFilter {
|
|
|
| // Returns the StoragePartition associated with this render process.
|
| StoragePartition* storage_partition() const { return storage_partition_; }
|
| + void SendLoaderTransferTest_SetDataBuffer(
|
| + int routing_id, base::SharedMemoryHandle handle);
|
| + void SendLoaderTransferTest_Ack(int routing_id);
|
| + void SendLoaderTransferTest_Done(int routing_id);
|
|
|
| protected:
|
| // For testing. Specify a factory method that creates mock version of
|
|
|