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

Unified Diff: Source/modules/websockets/WorkerWebSocketChannel.h

Issue 735433002: DOMWebSocket::bufferedAmount() should not return an "unsigned long" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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: Source/modules/websockets/WorkerWebSocketChannel.h
diff --git a/Source/modules/websockets/WorkerWebSocketChannel.h b/Source/modules/websockets/WorkerWebSocketChannel.h
index a304b1326641f9b1e88682a096b74b66859cfd62..3cd340290aaf9dfe3f489a4fe10dcbfb044a685f 100644
--- a/Source/modules/websockets/WorkerWebSocketChannel.h
+++ b/Source/modules/websockets/WorkerWebSocketChannel.h
@@ -109,7 +109,7 @@ public:
virtual void didConnect(const String& subprotocol, const String& extensions) override;
virtual void didReceiveTextMessage(const String& payload) override;
virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> >) override;
- virtual void didConsumeBufferedAmount(unsigned long) override;
+ virtual void didConsumeBufferedAmount(unsigned) override;
virtual void didStartClosingHandshake() override;
virtual void didClose(ClosingHandshakeCompletionStatus, unsigned short code, const String& reason) override;
virtual void didError() override;
« no previous file with comments | « Source/modules/websockets/WebSocketChannelClient.h ('k') | Source/modules/websockets/WorkerWebSocketChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698