| Index: Source/modules/filesystem/FileEntrySync.cpp
|
| diff --git a/Source/modules/filesystem/FileEntrySync.cpp b/Source/modules/filesystem/FileEntrySync.cpp
|
| index 569e5f276d68759ad9dd846e30e9684734570751..7c9911841883edf89778bc9381c0f400de2f1966 100644
|
| --- a/Source/modules/filesystem/FileEntrySync.cpp
|
| +++ b/Source/modules/filesystem/FileEntrySync.cpp
|
| @@ -37,7 +37,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -FileEntrySync::FileEntrySync(PassRefPtrWillBeRawPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
|
| +FileEntrySync::FileEntrySync(DOMFileSystemBase* fileSystem, const String& fullPath)
|
| : EntrySync(fileSystem, fullPath)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -48,7 +48,7 @@ PassRefPtrWillBeRawPtr<File> FileEntrySync::file(ExceptionState& exceptionState)
|
| return filesystem()->createFile(this, exceptionState);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& exceptionState)
|
| +FileWriterSync* FileEntrySync::createWriter(ExceptionState& exceptionState)
|
| {
|
| return filesystem()->createWriter(this, exceptionState);
|
| }
|
|
|