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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.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/DevToolsHostFileSystem.h
diff --git a/third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.h b/third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.h
index e1181708dff91e269abfa2cd85915138ac7a92f1..f2370d782633cac4e0cdea535d0af1e5aa3ef37f 100644
--- a/third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.h
+++ b/third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.h
@@ -11,18 +11,17 @@
namespace blink {
-class DOMFileSystem;
class DevToolsHost;
+class FileSystem;
class DevToolsHostFileSystem {
STATIC_ONLY(DevToolsHostFileSystem);
public:
- static DOMFileSystem* isolatedFileSystem(DevToolsHost&,
- const String& fileSystemName,
- const String& rootURL);
- static void upgradeDraggedFileSystemPermissions(DevToolsHost&,
- DOMFileSystem*);
+ static FileSystem* isolatedFileSystem(DevToolsHost&,
+ const String& fileSystemName,
+ const String& rootURL);
+ static void upgradeDraggedFileSystemPermissions(DevToolsHost&, FileSystem*);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698