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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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
Index: Source/modules/websockets/NewWebSocketChannelImplTest.cpp
diff --git a/Source/modules/websockets/NewWebSocketChannelImplTest.cpp b/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
index 27f631f461bcae2ac5375104dab17ce60979bf2d..0a62a268ca153fbf1fcdf2ad70e6134a129da9a1 100644
--- a/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
+++ b/Source/modules/websockets/NewWebSocketChannelImplTest.cpp
@@ -53,7 +53,7 @@ public:
MOCK_METHOD2(didConnect, void(const String&, const String&));
MOCK_METHOD1(didReceiveTextMessage, void(const String&));
- virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> > payload) OVERRIDE
+ virtual void didReceiveBinaryMessage(PassOwnPtr<Vector<char> > payload) override
{
didReceiveBinaryMessageMock(*payload);
}
@@ -63,7 +63,7 @@ public:
MOCK_METHOD0(didStartClosingHandshake, void());
MOCK_METHOD3(didClose, void(ClosingHandshakeCompletionStatus, unsigned short, const String&));
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
WebSocketChannelClient::trace(visitor);
}
« no previous file with comments | « Source/modules/websockets/NewWebSocketChannelImpl.cpp ('k') | Source/modules/websockets/WebSocketDeflateFramer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698