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

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

Issue 418803003: Oilpan: fix WebSockets unit test GC plugin failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/websockets/NewWebSocketChannelImplTest.cpp
diff --git a/Source/modules/websockets/NewWebSocketChannelImplTest.cpp b/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
index f39cbb76b28f6edb9368ff8b2009f6313d097823..6ed7c28f92e9f4844ea60823ae851d89514fafb4 100644
--- a/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
+++ b/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
@@ -61,7 +61,12 @@ public:
MOCK_METHOD1(didConsumeBufferedAmount, void(unsigned long));
MOCK_METHOD0(didStartClosingHandshake, void());
MOCK_METHOD3(didClose, void(ClosingHandshakeCompletionStatus, unsigned short, const String&));
- MOCK_METHOD1(trace, void(Visitor*));
+
+ virtual void trace(Visitor* visitor) OVERRIDE
+ {
+ WebSocketChannelClient::trace(visitor);
+ }
+
};
class MockWebSocketHandle : public blink::WebSocketHandle {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698