| Index: third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h b/third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
|
| index 33afbac895bcc4cadb2709460bc250d918852e0d..a586924f495e00c7d1b181be7406cb47c4961aaf 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
|
| +++ b/third_party/WebKit/Source/modules/filesystem/DraggedIsolatedFileSystemImpl.h
|
| @@ -39,7 +39,7 @@
|
|
|
| namespace blink {
|
|
|
| -class DOMFileSystem;
|
| +class FileSystem;
|
|
|
| class DraggedIsolatedFileSystemImpl final
|
| : public GarbageCollectedFinalized<DraggedIsolatedFileSystemImpl>,
|
| @@ -53,7 +53,7 @@ class DraggedIsolatedFileSystemImpl final
|
| return new DraggedIsolatedFileSystemImpl(host, filesystemId);
|
| }
|
|
|
| - static DOMFileSystem* getDOMFileSystem(DataObject* host, ExecutionContext*);
|
| + static FileSystem* getDOMFileSystem(DataObject* host, ExecutionContext*);
|
|
|
| static const char* supplementName();
|
| static DraggedIsolatedFileSystemImpl* from(DataObject*);
|
| @@ -65,7 +65,7 @@ class DraggedIsolatedFileSystemImpl final
|
| private:
|
| DraggedIsolatedFileSystemImpl(DataObject& host, const String& filesystemId);
|
|
|
| - Member<DOMFileSystem> m_filesystem;
|
| + Member<FileSystem> m_filesystem;
|
| };
|
|
|
| } // namespace blink
|
|
|