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

Unified Diff: third_party/WebKit/Source/modules/filesystem/FileSystemCallback.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/FileSystemCallback.h
diff --git a/third_party/WebKit/Source/modules/filesystem/FileSystemCallback.h b/third_party/WebKit/Source/modules/filesystem/FileSystemCallback.h
index 061f2633de6f91595d3408398f9d198721a39c9f..52f6cc10a9205b6a13e9afb746f921188e6e8e1a 100644
--- a/third_party/WebKit/Source/modules/filesystem/FileSystemCallback.h
+++ b/third_party/WebKit/Source/modules/filesystem/FileSystemCallback.h
@@ -35,14 +35,14 @@
namespace blink {
-class DOMFileSystem;
+class FileSystem;
class FileSystemCallback
: public GarbageCollectedFinalized<FileSystemCallback> {
public:
virtual ~FileSystemCallback() {}
DEFINE_INLINE_VIRTUAL_TRACE() {}
- virtual void handleEvent(DOMFileSystem*) = 0;
+ virtual void handleEvent(FileSystem*) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698