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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileWriter.h

Issue 1805843002: [v8 gc] Introduce a base class for all objects that can have pending activity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 years, 9 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: third_party/WebKit/Source/modules/filesystem/FileWriter.h
diff --git a/third_party/WebKit/Source/modules/filesystem/FileWriter.h b/third_party/WebKit/Source/modules/filesystem/FileWriter.h
index a2653a14e18c4b9b5238d733ade89fb21425bcb9..fb6ec89ee5c9e62a0733d43a3be7e0313f8509a3 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileWriter.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.h
@@ -31,6 +31,7 @@
#ifndef FileWriter_h
#define FileWriter_h
+#include "bindings/core/v8/V8GCRoot.h"
#include "core/dom/ActiveDOMObject.h"
#include "core/dom/ExecutionContext.h"
#include "core/fileapi/FileError.h"
@@ -54,7 +55,8 @@ class FileWriter final
, public EventTargetWithInlineData
#endif
, public ActiveDOMObject
- , public WebFileWriterClient {
+ , public WebFileWriterClient
+ , public V8GCRoot {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(FileWriterBase);
DEFINE_WRAPPERTYPEINFO();
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(FileWriter);

Powered by Google App Engine
This is Rietveld 408576698