| Index: Source/core/page/DragData.cpp
|
| diff --git a/Source/core/page/DragData.cpp b/Source/core/page/DragData.cpp
|
| index acebe37d9f5a435a00fdece4b236815af83095db..84157d40da512dfda7dee136f4f38684ff4b92d5 100644
|
| --- a/Source/core/page/DragData.cpp
|
| +++ b/Source/core/page/DragData.cpp
|
| @@ -33,7 +33,6 @@
|
| #include "core/dom/Range.h"
|
| #include "core/editing/markup.h"
|
| #include "core/frame/LocalFrame.h"
|
| -#include "modules/filesystem/DraggedIsolatedFileSystem.h"
|
| #include "platform/FileMetadata.h"
|
| #include "platform/clipboard/ClipboardMimeTypes.h"
|
| #include "platform/weborigin/KURL.h"
|
| @@ -163,10 +162,7 @@ PassRefPtr<DocumentFragment> DragData::asFragment(LocalFrame* frame, PassRefPtrW
|
|
|
| String DragData::droppedFileSystemId() const
|
| {
|
| - DraggedIsolatedFileSystem* filesystem = DraggedIsolatedFileSystem::from(m_platformDragData);
|
| - if (!filesystem)
|
| - return String();
|
| - return filesystem->filesystemId();
|
| + return m_platformDragData->filesystemId();
|
| }
|
|
|
| } // namespace WebCore
|
|
|