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

Unified Diff: Source/modules/filesystem/FileWriter.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/modules/filesystem/FileWriter.h
diff --git a/Source/modules/filesystem/FileWriter.h b/Source/modules/filesystem/FileWriter.h
index 0660f7a8d32e6037b19187d2be693fb5da6b7a33..17ad7cf00abd24c2c22640e783692ba919689d3f 100644
--- a/Source/modules/filesystem/FileWriter.h
+++ b/Source/modules/filesystem/FileWriter.h
@@ -48,7 +48,8 @@ class ExceptionState;
class ExecutionContext;
class FileWriter FINAL : public FileWriterBase, public ScriptWrappable, public ActiveDOMObject, public EventTargetWithInlineData, public blink::WebFileWriterClient {
- DEFINE_EVENT_TARGET_REFCOUNTING(RefCountedWillBeRefCountedGarbageCollected<FileWriterBase>);
+ REFCOUNTED_EVENT_TARGET(FileWriterBase);
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FileWriter);
public:
static PassRefPtrWillBeRawPtr<FileWriter> create(ExecutionContext*);

Powered by Google App Engine
This is Rietveld 408576698