summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp b/chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp
index d0ec7a7e4c6..dce565cb2c5 100644
--- a/chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp
+++ b/chromium/third_party/WebKit/Source/modules/filesystem/DirectoryEntry.cpp
@@ -39,13 +39,13 @@
namespace WebCore {
-DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
+DirectoryEntry::DirectoryEntry(DOMFileSystemBase* fileSystem, const String& fullPath)
: Entry(fileSystem, fullPath)
{
ScriptWrappable::init(this);
}
-PassRefPtr<DirectoryReader> DirectoryEntry::createReader()
+DirectoryReader* DirectoryEntry::createReader()
{
return DirectoryReader::create(m_fileSystem, m_fullPath);
}
@@ -67,4 +67,9 @@ void DirectoryEntry::removeRecursively(PassOwnPtr<VoidCallback> successCallback,
m_fileSystem->removeRecursively(this, successCallback, errorCallback);
}
+void DirectoryEntry::trace(Visitor* visitor)
+{
+ Entry::trace(visitor);
+}
+
}