| Index: third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| diff --git a/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp b/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| index 5a77eb8e3d0d089de4541a04c77e2a3baef036eb..a09fdfc9b11f86331d54290c8010a5a012a4671b 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| @@ -65,14 +65,14 @@ FileWriter::FileWriter(ExecutionContext* context)
|
| FileWriter::~FileWriter() {
|
| ASSERT(!m_recursionDepth);
|
| if (m_readyState == kWriting)
|
| - stop();
|
| + contextDestroyed();
|
| }
|
|
|
| const AtomicString& FileWriter::interfaceName() const {
|
| return EventTargetNames::FileWriter;
|
| }
|
|
|
| -void FileWriter::stop() {
|
| +void FileWriter::contextDestroyed() {
|
| // Make sure we've actually got something to stop, and haven't already called abort().
|
| if (!writer() || m_readyState != kWriting)
|
| return;
|
|
|