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

Unified Diff: Source/platform/network/WebSocketHandshakeRequest.h

Issue 137933002: Update more platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 | « Source/platform/graphics/gpu/DrawingBuffer.h ('k') | Source/platform/scroll/FramelessScrollView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/network/WebSocketHandshakeRequest.h
diff --git a/Source/platform/network/WebSocketHandshakeRequest.h b/Source/platform/network/WebSocketHandshakeRequest.h
index 87786fb8a0250fea3b743379b23cd467f2237591..b510fc026fe6991e148888a9d5c3255456ce49f4 100644
--- a/Source/platform/network/WebSocketHandshakeRequest.h
+++ b/Source/platform/network/WebSocketHandshakeRequest.h
@@ -39,7 +39,7 @@ class PLATFORM_EXPORT WebSocketHandshakeRequest : public HTTPRequest {
public:
static PassRefPtr<WebSocketHandshakeRequest> create(const String& requestMethod, const KURL& url) { return adoptRef(new WebSocketHandshakeRequest(requestMethod, url)); }
static PassRefPtr<WebSocketHandshakeRequest> create() { return adoptRef(new WebSocketHandshakeRequest); }
- ~WebSocketHandshakeRequest();
+ virtual ~WebSocketHandshakeRequest();
private:
WebSocketHandshakeRequest(const String& requestMethod, const KURL&);
« no previous file with comments | « Source/platform/graphics/gpu/DrawingBuffer.h ('k') | Source/platform/scroll/FramelessScrollView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698