| Index: third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.cpp b/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.cpp
|
| index fd291be4b8bcb4456b05bd17ed93f66b5836d94e..0662d63bb66eb0c8abd494e027c1fb757162c958 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/DirectoryEntrySync.cpp
|
| @@ -53,21 +53,21 @@ DirectoryReaderSync* DirectoryEntrySync::createReader()
|
| FileEntrySync* DirectoryEntrySync::getFile(const String& path, const FileSystemFlags& options, ExceptionState& exceptionState)
|
| {
|
| EntrySyncCallbackHelper* helper = EntrySyncCallbackHelper::create();
|
| - m_fileSystem->getFile(this, path, options, helper->successCallback(), helper->errorCallback(), DOMFileSystemBase::Synchronous);
|
| + m_fileSystem->getFile(this, path, options, helper->getSuccessCallback(), helper->getErrorCallback(), DOMFileSystemBase::Synchronous);
|
| return static_cast<FileEntrySync*>(helper->getResult(exceptionState));
|
| }
|
|
|
| DirectoryEntrySync* DirectoryEntrySync::getDirectory(const String& path, const FileSystemFlags& options, ExceptionState& exceptionState)
|
| {
|
| EntrySyncCallbackHelper* helper = EntrySyncCallbackHelper::create();
|
| - m_fileSystem->getDirectory(this, path, options, helper->successCallback(), helper->errorCallback(), DOMFileSystemBase::Synchronous);
|
| + m_fileSystem->getDirectory(this, path, options, helper->getSuccessCallback(), helper->getErrorCallback(), DOMFileSystemBase::Synchronous);
|
| return static_cast<DirectoryEntrySync*>(helper->getResult(exceptionState));
|
| }
|
|
|
| void DirectoryEntrySync::removeRecursively(ExceptionState& exceptionState)
|
| {
|
| VoidSyncCallbackHelper* helper = VoidSyncCallbackHelper::create();
|
| - m_fileSystem->removeRecursively(this, helper->successCallback(), helper->errorCallback(), DOMFileSystemBase::Synchronous);
|
| + m_fileSystem->removeRecursively(this, helper->getSuccessCallback(), helper->getErrorCallback(), DOMFileSystemBase::Synchronous);
|
| helper->getResult(exceptionState);
|
| }
|
|
|
|
|