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

Unified Diff: components/html_viewer/web_socket_handle_impl.cc

Issue 1574213003: [ABANDONED] Use new Websocket SendBlob IPC from renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@websocket_blob_send_sender
Patch Set: Comment that bufferedAmount may be temporarily too low. 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 | « components/html_viewer/web_socket_handle_impl.h ('k') | content/child/websocket_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/web_socket_handle_impl.cc
diff --git a/components/html_viewer/web_socket_handle_impl.cc b/components/html_viewer/web_socket_handle_impl.cc
index e33aeaf48f767b7d0075bab2c29fd64feaa1ac59..16626ddaadc0760d712926b843b6c6bd005a028c 100644
--- a/components/html_viewer/web_socket_handle_impl.cc
+++ b/components/html_viewer/web_socket_handle_impl.cc
@@ -8,6 +8,7 @@
#include <vector>
#include "base/bind.h"
+#include "base/logging.h"
#include "base/macros.h"
#include "components/html_viewer/blink_basic_type_converters.h"
#include "mojo/public/cpp/bindings/binding.h"
@@ -198,6 +199,11 @@ void WebSocketHandleImpl::send(bool fin,
fin, type, size32));
}
+void WebSocketHandleImpl::sendBlob(const blink::WebString& uuid,
+ uint64_t expectedSize) {
+ NOTIMPLEMENTED();
+}
+
void WebSocketHandleImpl::flowControl(int64_t quota) {
if (!client_)
return;
« no previous file with comments | « components/html_viewer/web_socket_handle_impl.h ('k') | content/child/websocket_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698