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

Unified Diff: Source/modules/speech/SpeechRecognition.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/speech/SpeechRecognition.h
diff --git a/Source/modules/speech/SpeechRecognition.h b/Source/modules/speech/SpeechRecognition.h
index 1ccbdebdce547fded82656450db69bb9146a0662..6befffff9a06f07db12e2429c96f317cbe19197a 100644
--- a/Source/modules/speech/SpeechRecognition.h
+++ b/Source/modules/speech/SpeechRecognition.h
@@ -43,7 +43,7 @@ class SpeechRecognitionError;
class SpeechRecognitionResult;
class SpeechRecognitionResultList;
-class SpeechRecognition : public RefCounted<SpeechRecognition>, public ScriptWrappable, public ActiveDOMObject, public EventTarget {
+class SpeechRecognition : public EventTarget, public RefCounted<SpeechRecognition>, public ScriptWrappable, public ActiveDOMObject {
public:
static PassRefPtr<SpeechRecognition> create(ScriptExecutionContext*);
~SpeechRecognition();

Powered by Google App Engine
This is Rietveld 408576698