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

Unified Diff: Source/core/fileapi/FileReader.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/core/fileapi/FileReader.h
diff --git a/Source/core/fileapi/FileReader.h b/Source/core/fileapi/FileReader.h
index c8482fd7fe381bebe5a915f54307227b030843bd..e1583a68f8654728d2ec7575f7d05bf2f14caed2 100644
--- a/Source/core/fileapi/FileReader.h
+++ b/Source/core/fileapi/FileReader.h
@@ -48,7 +48,7 @@ class ScriptExecutionContext;
typedef int ExceptionCode;
-class FileReader : public RefCounted<FileReader>, public ScriptWrappable, public ActiveDOMObject, public EventTarget, public FileReaderLoaderClient {
+class FileReader : public EventTarget, public RefCounted<FileReader>, public ScriptWrappable, public ActiveDOMObject, public FileReaderLoaderClient {
public:
static PassRefPtr<FileReader> create(ScriptExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698