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

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

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
« no previous file with comments | « Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h ('k') | Source/web/WebDragDataTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp
diff --git a/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp b/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp
index 5f648416ea495e8e0d491168fa7bf9890d3874c3..dcd0aaa2ed423859dc29620120c66895b905840a 100644
--- a/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp
+++ b/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.cpp
@@ -39,10 +39,6 @@
namespace blink {
-DraggedIsolatedFileSystemImpl::~DraggedIsolatedFileSystemImpl()
-{
-}
-
DOMFileSystem* DraggedIsolatedFileSystemImpl::getDOMFileSystem(DataObject* host, ExecutionContext* executionContext)
{
DraggedIsolatedFileSystemImpl* draggedIsolatedFileSystem = from(host);
@@ -62,7 +58,7 @@ const char* DraggedIsolatedFileSystemImpl::supplementName()
DraggedIsolatedFileSystemImpl* DraggedIsolatedFileSystemImpl::from(DataObject* dataObject)
{
- return static_cast<DraggedIsolatedFileSystemImpl*>(WillBeHeapSupplement<DataObject>::from(dataObject, supplementName()));
+ return static_cast<DraggedIsolatedFileSystemImpl*>(HeapSupplement<DataObject>::from(dataObject, supplementName()));
}
DraggedIsolatedFileSystemImpl::DraggedIsolatedFileSystemImpl(DataObject& host, const String& filesystemId)
@@ -73,13 +69,13 @@ DraggedIsolatedFileSystemImpl::DraggedIsolatedFileSystemImpl(DataObject& host, c
DEFINE_TRACE(DraggedIsolatedFileSystemImpl)
{
visitor->trace(m_filesystem);
- WillBeHeapSupplement<DataObject>::trace(visitor);
+ HeapSupplement<DataObject>::trace(visitor);
}
void DraggedIsolatedFileSystemImpl::prepareForDataObject(DataObject* dataObject, const String& filesystemId)
{
- OwnPtrWillBeRawPtr<DraggedIsolatedFileSystemImpl> fileSystem = create(*dataObject, filesystemId);
- DraggedIsolatedFileSystemImpl::provideTo(*dataObject, DraggedIsolatedFileSystemImpl::supplementName(), fileSystem.release());
+ DraggedIsolatedFileSystemImpl* fileSystem = create(*dataObject, filesystemId);
+ DraggedIsolatedFileSystemImpl::provideTo(*dataObject, DraggedIsolatedFileSystemImpl::supplementName(), fileSystem);
}
} // namespace blink
« no previous file with comments | « Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h ('k') | Source/web/WebDragDataTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698