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

Unified Diff: Source/modules/websockets/DOMWebSocketTest.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
« no previous file with comments | « Source/modules/websockets/DOMWebSocket.cpp ('k') | Source/modules/websockets/DocumentWebSocketChannel.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/websockets/DOMWebSocketTest.cpp
diff --git a/Source/modules/websockets/DOMWebSocketTest.cpp b/Source/modules/websockets/DOMWebSocketTest.cpp
index dc6e001f2e4536793359ab59e6ef60c7b94ef4c8..139cf21a886a9643748b13f7574675671cd5390d 100644
--- a/Source/modules/websockets/DOMWebSocketTest.cpp
+++ b/Source/modules/websockets/DOMWebSocketTest.cpp
@@ -49,7 +49,7 @@ public:
MOCK_METHOD3(send, void(const ArrayBuffer&, unsigned, unsigned));
MOCK_METHOD1(send, void(PassRefPtr<BlobDataHandle>));
MOCK_METHOD1(send, void(PassOwnPtr<Vector<char> >));
- MOCK_CONST_METHOD0(bufferedAmount, unsigned long());
+ MOCK_CONST_METHOD0(bufferedAmount, unsigned());
MOCK_METHOD2(close, void(int, const String&));
MOCK_METHOD4(fail, void(const String&, MessageLevel, const String&, unsigned));
MOCK_METHOD0(disconnect, void());
« no previous file with comments | « Source/modules/websockets/DOMWebSocket.cpp ('k') | Source/modules/websockets/DocumentWebSocketChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698