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

Unified Diff: Source/core/fileapi/FileReader.h

Issue 307433003: Oilpan: Allocate all EventTarget derived types on the manged heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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 b2118a8985e5f0d163aff2dcd1edc18a7e268acc..0454fae173cabeff04a3c4e350e0d41b2610f936 100644
--- a/Source/core/fileapi/FileReader.h
+++ b/Source/core/fileapi/FileReader.h
@@ -50,7 +50,8 @@ class ExceptionState;
class ExecutionContext;
class FileReader FINAL : public RefCountedWillBeRefCountedGarbageCollected<FileReader>, public ScriptWrappable, public ActiveDOMObject, public FileReaderLoaderClient, public EventTargetWithInlineData {
- DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<FileReader>);
+ REFCOUNTED_EVENT_TARGET(FileReader);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FileReader);
public:
static PassRefPtrWillBeRawPtr<FileReader> create(ExecutionContext*);
@@ -97,7 +98,7 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(error);
DEFINE_ATTRIBUTE_EVENT_LISTENER(loadend);
- void trace(Visitor*);
+ virtual void trace(Visitor*) OVERRIDE;
private:
class ThrottlingController;

Powered by Google App Engine
This is Rietveld 408576698