| Index: Source/modules/filesystem/DirectoryEntrySync.h | 
| diff --git a/Source/modules/filesystem/DirectoryEntrySync.h b/Source/modules/filesystem/DirectoryEntrySync.h | 
| index 739581537345fcc33500de08467e7e6bb51f59f7..4b81b5bf9074eb5e21709a3eb09d0fd12d08e2f5 100644 | 
| --- a/Source/modules/filesystem/DirectoryEntrySync.h | 
| +++ b/Source/modules/filesystem/DirectoryEntrySync.h | 
| @@ -45,19 +45,19 @@ class FileEntrySync; | 
|  | 
| class DirectoryEntrySync FINAL : public EntrySync { | 
| public: | 
| -    static PassRefPtr<DirectoryEntrySync> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) | 
| +    static PassRefPtrWillBeRawPtr<DirectoryEntrySync> create(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath) | 
| { | 
| -        return adoptRef(new DirectoryEntrySync(fileSystem, fullPath)); | 
| +        return adoptRefWillBeNoop(new DirectoryEntrySync(fileSystem, fullPath)); | 
| } | 
| virtual bool isDirectory() const OVERRIDE { return true; } | 
|  | 
| -    PassRefPtr<DirectoryReaderSync> createReader(); | 
| -    PassRefPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&); | 
| -    PassRefPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&); | 
| +    PassRefPtrWillBeRawPtr<DirectoryReaderSync> createReader(); | 
| +    PassRefPtrWillBeRawPtr<FileEntrySync> getFile(const String& path, const Dictionary&, ExceptionState&); | 
| +    PassRefPtrWillBeRawPtr<DirectoryEntrySync> getDirectory(const String& path, const Dictionary&, ExceptionState&); | 
| void removeRecursively(ExceptionState&); | 
|  | 
| private: | 
| -    DirectoryEntrySync(PassRefPtr<DOMFileSystemBase>, const String& fullPath); | 
| +    DirectoryEntrySync(PassRefPtrWillBeRawPtr<DOMFileSystemBase>, const String& fullPath); | 
| }; | 
|  | 
| DEFINE_TYPE_CASTS(DirectoryEntrySync, EntrySync, entry, entry->isDirectory(), entry.isDirectory()); | 
|  |