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

Unified Diff: third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h

Issue 2003253002: [Devtools] Allow User-Agent header override for Websockets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/public/platform/modules/websockets/WebSocketHandle.h
diff --git a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h
index 82ff81701986e70779a484bccd94c44eeb83a34a..2229d0670ab69e5f0b27bb1deb9711eef151cd09 100644
--- a/third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h
+++ b/third_party/WebKit/public/platform/modules/websockets/WebSocketHandle.h
@@ -57,7 +57,7 @@ public:
virtual ~WebSocketHandle() { }
- virtual void connect(const WebURL&, const WebVector<WebString>& protocols, const WebSecurityOrigin&, WebSocketHandleClient*) = 0;
+ virtual void connect(const WebURL&, const WebVector<WebString>& protocols, const WebSecurityOrigin&, const WebString&, WebSocketHandleClient*) = 0;
yhirano 2016/05/30 11:12:57 please add the param name.
allada 2016/06/01 19:06:41 Done.
virtual void send(bool fin, MessageType, const char* data, size_t /* size */) = 0;
virtual void flowControl(int64_t quota) = 0;
virtual void close(unsigned short code, const WebString& reason) = 0;

Powered by Google App Engine
This is Rietveld 408576698