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

Unified Diff: Source/modules/websockets/DocumentWebSocketChannelTest.cpp

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/DocumentWebSocketChannelTest.cpp
diff --git a/Source/modules/websockets/DocumentWebSocketChannelTest.cpp b/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
index c3a4911019029cb417dc5069968fb223b08d599a..60b3e1e1fc02efc690a67543d5b99ca71c6fbdb2 100644
--- a/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
+++ b/Source/modules/websockets/DocumentWebSocketChannelTest.cpp
@@ -59,7 +59,7 @@ public:
}
MOCK_METHOD1(didReceiveBinaryMessageMock, void(const Vector<char>&));
MOCK_METHOD0(didError, void());
- MOCK_METHOD1(didConsumeBufferedAmount, void(unsigned long));
+ MOCK_METHOD1(didConsumeBufferedAmount, void(unsigned));
MOCK_METHOD0(didStartClosingHandshake, void());
MOCK_METHOD3(didClose, void(ClosingHandshakeCompletionStatus, unsigned short, const String&));
« no previous file with comments | « Source/modules/websockets/DocumentWebSocketChannel.cpp ('k') | Source/modules/websockets/WebSocketChannelClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698