| 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..74b7de4ba39eaa04cf5f05227f3a6b60d5b17512 100644
|
| --- a/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| +++ b/third_party/WebKit/Source/modules/filesystem/FileWriter.cpp
|
| @@ -73,7 +73,8 @@ const AtomicString& FileWriter::interfaceName() const {
|
| }
|
|
|
| void FileWriter::stop() {
|
| - // Make sure we've actually got something to stop, and haven't already called abort().
|
| + // Make sure we've actually got something to stop, and haven't already called
|
| + // abort().
|
| if (!writer() || m_readyState != kWriting)
|
| return;
|
| doOperation(OperationAbort);
|
| @@ -104,7 +105,8 @@ void FileWriter::write(Blob* data, ExceptionState& exceptionState) {
|
| m_bytesToWrite = data->size();
|
| ASSERT(m_queuedOperation == OperationNone);
|
| if (m_operationInProgress != OperationNone) {
|
| - // We must be waiting for an abort to complete, since m_readyState wasn't kWriting.
|
| + // We must be waiting for an abort to complete, since m_readyState wasn't
|
| + // kWriting.
|
| ASSERT(m_operationInProgress == OperationAbort);
|
| m_queuedOperation = OperationWrite;
|
| } else
|
| @@ -143,7 +145,8 @@ void FileWriter::truncate(long long position, ExceptionState& exceptionState) {
|
| m_truncateLength = position;
|
| ASSERT(m_queuedOperation == OperationNone);
|
| if (m_operationInProgress != OperationNone) {
|
| - // We must be waiting for an abort to complete, since m_readyState wasn't kWriting.
|
| + // We must be waiting for an abort to complete, since m_readyState wasn't
|
| + // kWriting.
|
| ASSERT(m_operationInProgress == OperationAbort);
|
| m_queuedOperation = OperationTruncate;
|
| } else
|
|
|