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

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

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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/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

Powered by Google App Engine
This is Rietveld 408576698