summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/DOMFileSystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/DOMFileSystem.cpp')
-rw-r--r--WebCore/storage/DOMFileSystem.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/storage/DOMFileSystem.cpp b/WebCore/storage/DOMFileSystem.cpp
index 19c75fc..c3dbd34 100644
--- a/WebCore/storage/DOMFileSystem.cpp
+++ b/WebCore/storage/DOMFileSystem.cpp
@@ -33,7 +33,7 @@
#if ENABLE(FILE_SYSTEM)
-#include "Entry.h"
+#include "DirectoryEntry.h"
namespace WebCore {
@@ -43,9 +43,9 @@ DOMFileSystem::DOMFileSystem(const String& name, const String& rootPath)
{
}
-PassRefPtr<Entry> DOMFileSystem::root()
+PassRefPtr<DirectoryEntry> DOMFileSystem::root()
{
- return Entry::create(this, "/");
+ return DirectoryEntry::create(this, "/");
}
} // namespace