| Index: Source/modules/filesystem/DirectoryEntry.cpp
|
| diff --git a/Source/modules/filesystem/DirectoryEntry.cpp b/Source/modules/filesystem/DirectoryEntry.cpp
|
| index 84c446563a178e07067d5781e561b2eff740bf5d..dce565cb2c5175f5a06d5a88ed4da4622a3a54ec 100644
|
| --- a/Source/modules/filesystem/DirectoryEntry.cpp
|
| +++ b/Source/modules/filesystem/DirectoryEntry.cpp
|
| @@ -39,13 +39,13 @@
|
|
|
| namespace WebCore {
|
|
|
| -DirectoryEntry::DirectoryEntry(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
|
| +DirectoryEntry::DirectoryEntry(DOMFileSystemBase* fileSystem, const String& fullPath)
|
| : Entry(fileSystem, fullPath)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<DirectoryReader> DirectoryEntry::createReader()
|
| +DirectoryReader* DirectoryEntry::createReader()
|
| {
|
| return DirectoryReader::create(m_fileSystem, m_fullPath);
|
| }
|
|
|