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

Unified Diff: Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h

Issue 640303002: Enable Oilpan for core/clipboard/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove some slightly pointy edges Created 5 years, 8 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/DraggedIsolatedFileSystemImpl.h
diff --git a/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h b/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
index e42d2227ffaf7e7751ae466de5b9ed9ad2cf4671..e0c5f039753a8eed1aa14b5982d21cb7194d1247 100644
--- a/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
+++ b/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
@@ -41,14 +41,12 @@ namespace blink {
class DOMFileSystem;
-class DraggedIsolatedFileSystemImpl final : public NoBaseWillBeGarbageCollectedFinalized<DraggedIsolatedFileSystemImpl>, public DraggedIsolatedFileSystem, public WillBeHeapSupplement<DataObject> {
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DraggedIsolatedFileSystemImpl);
+class DraggedIsolatedFileSystemImpl final : public GarbageCollectedFinalized<DraggedIsolatedFileSystemImpl>, public DraggedIsolatedFileSystem, public HeapSupplement<DataObject> {
+ USING_GARBAGE_COLLECTED_MIXIN(DraggedIsolatedFileSystemImpl);
public:
- virtual ~DraggedIsolatedFileSystemImpl();
-
- static PassOwnPtrWillBeRawPtr<DraggedIsolatedFileSystemImpl> create(DataObject& host, const String& filesystemId)
+ static DraggedIsolatedFileSystemImpl* create(DataObject& host, const String& filesystemId)
{
- return adoptPtrWillBeNoop(new DraggedIsolatedFileSystemImpl(host, filesystemId));
+ return new DraggedIsolatedFileSystemImpl(host, filesystemId);
}
static DOMFileSystem* getDOMFileSystem(DataObject* host, ExecutionContext*);
@@ -62,7 +60,8 @@ public:
private:
DraggedIsolatedFileSystemImpl(DataObject& host, const String& filesystemId);
- PersistentWillBeMember<DOMFileSystem> m_filesystem;
+
+ Member<DOMFileSystem> m_filesystem;
};
} // namespace blink
« no previous file with comments | « Source/modules/filesystem/DataTransferItemFileSystem.cpp ('k') | Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698