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

Unified Diff: Source/web/WebSocketChannelClientProxy.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
« no previous file with comments | « Source/modules/websockets/WorkerWebSocketChannel.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSocketChannelClientProxy.h
diff --git a/Source/web/WebSocketChannelClientProxy.h b/Source/web/WebSocketChannelClientProxy.h
index b4490cbdcaf88d9635ee55c2a560f2cc96d6518f..d3fbf277d536ee707f7a78912087e077224d8ad3 100644
--- a/Source/web/WebSocketChannelClientProxy.h
+++ b/Source/web/WebSocketChannelClientProxy.h
@@ -43,7 +43,7 @@ public:
{
m_impl->didError();
}
- virtual void didConsumeBufferedAmount(unsigned long consumed) override
+ virtual void didConsumeBufferedAmount(unsigned consumed) override
{
m_impl->didConsumeBufferedAmount(consumed);
}
« no previous file with comments | « Source/modules/websockets/WorkerWebSocketChannel.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698