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

Unified Diff: Source/modules/websockets/WebSocket.h

Issue 18778002: Inherit EventTarget interface instead of duplicating its code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
Index: Source/modules/websockets/WebSocket.h
diff --git a/Source/modules/websockets/WebSocket.h b/Source/modules/websockets/WebSocket.h
index cafb267ab0ff746f810beeb2f8cbd1124a769035..5a077602e81804547b57dba9ae9ba170a6ad61b4 100644
--- a/Source/modules/websockets/WebSocket.h
+++ b/Source/modules/websockets/WebSocket.h
@@ -48,7 +48,7 @@ namespace WebCore {
class Blob;
-class WebSocket : public RefCounted<WebSocket>, public ScriptWrappable, public EventTarget, public ActiveDOMObject, public WebSocketChannelClient {
+class WebSocket : public EventTarget, public RefCounted<WebSocket>, public ScriptWrappable, public ActiveDOMObject, public WebSocketChannelClient {
public:
static const char* subProtocolSeperator();
static PassRefPtr<WebSocket> create(ScriptExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698