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

Unified Diff: third_party/WebKit/Source/platform/exported/Platform.cpp

Issue 2930263002: Add blink::WebSocketHandshakeThrottle (Closed)
Patch Set: Fixes from yhirano review Created 3 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/platform/exported/Platform.cpp
diff --git a/third_party/WebKit/Source/platform/exported/Platform.cpp b/third_party/WebKit/Source/platform/exported/Platform.cpp
index d8a57f767b43c1e34e0c7fcee0544f4686da19f4..c28506a52b954bd9013e688f80437df3040d3921 100644
--- a/third_party/WebKit/Source/platform/exported/Platform.cpp
+++ b/third_party/WebKit/Source/platform/exported/Platform.cpp
@@ -53,6 +53,7 @@
#include "public/platform/WebPrerenderingSupport.h"
#include "public/platform/WebRTCCertificateGenerator.h"
#include "public/platform/WebRTCPeerConnectionHandler.h"
+#include "public/platform/WebSocketHandshakeThrottle.h"
#include "public/platform/WebStorageNamespace.h"
#include "public/platform/WebThread.h"
#include "public/platform/modules/serviceworker/WebServiceWorkerCacheStorage.h"
@@ -227,6 +228,11 @@ std::unique_ptr<WebCanvasCaptureHandler> Platform::CreateCanvasCaptureHandler(
return nullptr;
}
+std::unique_ptr<WebSocketHandshakeThrottle>
+Platform::CreateWebSocketHandshakeThrottle() {
+ return nullptr;
+}
+
std::unique_ptr<WebImageCaptureFrameGrabber>
Platform::CreateImageCaptureFrameGrabber() {
return nullptr;

Powered by Google App Engine
This is Rietveld 408576698