| Index: Source/modules/filesystem/FileEntrySync.cpp
|
| diff --git a/Source/modules/filesystem/FileEntrySync.cpp b/Source/modules/filesystem/FileEntrySync.cpp
|
| index a8ced926bc634335f3c36fdb63554add956d1aac..ae80784c9c64987c59375f76b26c8105fcb06ae0 100644
|
| --- a/Source/modules/filesystem/FileEntrySync.cpp
|
| +++ b/Source/modules/filesystem/FileEntrySync.cpp
|
| @@ -43,14 +43,14 @@ FileEntrySync::FileEntrySync(PassRefPtr<DOMFileSystemBase> fileSystem, const Str
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<File> FileEntrySync::file(ExceptionState& es)
|
| +PassRefPtr<File> FileEntrySync::file(ExceptionState& exceptionState)
|
| {
|
| - return filesystem()->createFile(this, es);
|
| + return filesystem()->createFile(this, exceptionState);
|
| }
|
|
|
| -PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& es)
|
| +PassRefPtr<FileWriterSync> FileEntrySync::createWriter(ExceptionState& exceptionState)
|
| {
|
| - return filesystem()->createWriter(this, es);
|
| + return filesystem()->createWriter(this, exceptionState);
|
| }
|
|
|
| }
|
|
|