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

Unified Diff: Source/modules/websockets/WebSocketExtensionDispatcherTest.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/WebSocketExtensionDispatcherTest.cpp
diff --git a/Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp b/Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp
index ef8df67c3c10861fc8ac8a38b03a6f815f0aa5cc..ca20121e798daf4d976a559ce7ada8229dab9674 100644
--- a/Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp
+++ b/Source/modules/websockets/WebSocketExtensionDispatcherTest.cpp
@@ -37,15 +37,15 @@ namespace {
class WebSocketExtensionDispatcherTest;
-class MockWebSocketExtensionProcessor FINAL : public WebSocketExtensionProcessor {
+class MockWebSocketExtensionProcessor final : public WebSocketExtensionProcessor {
public:
MockWebSocketExtensionProcessor(const String& name, WebSocketExtensionDispatcherTest* test)
: WebSocketExtensionProcessor(name)
, m_test(test)
{
}
- virtual String handshakeString() OVERRIDE { return extensionToken(); }
- virtual bool processResponse(const HashMap<String, String>&) OVERRIDE;
+ virtual String handshakeString() override { return extensionToken(); }
+ virtual bool processResponse(const HashMap<String, String>&) override;
private:
WebSocketExtensionDispatcherTest* m_test;
« no previous file with comments | « Source/modules/websockets/WebSocketDeflateFramer.cpp ('k') | Source/modules/websockets/WebSocketPerMessageDeflate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698