summaryrefslogtreecommitdiffstats
path: root/WebCore/fileapi/FileEntry.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/fileapi/FileEntry.h')
-rw-r--r--WebCore/fileapi/FileEntry.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/fileapi/FileEntry.h b/WebCore/fileapi/FileEntry.h
index 2c85d73..216cca2 100644
--- a/WebCore/fileapi/FileEntry.h
+++ b/WebCore/fileapi/FileEntry.h
@@ -39,11 +39,11 @@
namespace WebCore {
-class DOMFileSystem;
+class DOMFileSystemBase;
class FileEntry : public Entry {
public:
- static PassRefPtr<FileEntry> create(DOMFileSystem* fileSystem, const String& fullPath)
+ static PassRefPtr<FileEntry> create(DOMFileSystemBase* fileSystem, const String& fullPath)
{
return adoptRef(new FileEntry(fileSystem, fullPath));
}
@@ -54,7 +54,7 @@ public:
virtual bool isFile() const { return true; }
private:
- FileEntry(DOMFileSystem* fileSystem, const String& fullPath);
+ FileEntry(DOMFileSystemBase* fileSystem, const String& fullPath);
};
} // namespace