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