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

Unified Diff: content/child/websocket_bridge.h

Issue 1666893003: [ABANDONED] WebSocket Blob receive in the browser process: renderer changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@websocket_blob_receive_host_merged
Patch Set: Created 4 years, 10 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 | « no previous file | content/child/websocket_bridge.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/websocket_bridge.h
diff --git a/content/child/websocket_bridge.h b/content/child/websocket_bridge.h
index ab5e3dca0194a4e84660f230330ed1985cbcc25c..74423be2d76ac69d9e72bf9450fe94d22da4d7eb 100644
--- a/content/child/websocket_bridge.h
+++ b/content/child/websocket_bridge.h
@@ -41,6 +41,8 @@ class WebSocketBridge : public blink::WebSocketHandle {
size_t size) override;
void flowControl(int64_t quota) override;
void close(unsigned short code, const blink::WebString& reason) override;
+ void changeBinaryType(BinaryType new_binary_type) override;
+ void confirmBlob() override;
void Disconnect();
@@ -59,6 +61,7 @@ class WebSocketBridge : public blink::WebSocketHandle {
void DidReceiveData(bool fin,
WebSocketMessageType type,
const std::vector<char>& data);
+ void DidReceiveBlob(const std::string& uuid, uint64_t size);
void DidReceiveFlowControl(int64_t quota);
void DidClose(bool was_clean, unsigned short code, const std::string& reason);
void DidStartClosingHandshake();
« no previous file with comments | « no previous file | content/child/websocket_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698