OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "webkit/browser/fileapi/file_writer_delegate.h" | 5 #include "storage/browser/fileapi/file_writer_delegate.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/callback.h" | 8 #include "base/callback.h" |
9 #include "base/files/file_util_proxy.h" | 9 #include "base/files/file_util_proxy.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
11 #include "base/message_loop/message_loop_proxy.h" | 11 #include "base/message_loop/message_loop_proxy.h" |
12 #include "base/sequenced_task_runner.h" | 12 #include "base/sequenced_task_runner.h" |
13 #include "base/threading/thread_restrictions.h" | 13 #include "base/threading/thread_restrictions.h" |
14 #include "net/base/net_errors.h" | 14 #include "net/base/net_errors.h" |
15 #include "webkit/browser/fileapi/file_stream_writer.h" | 15 #include "storage/browser/fileapi/file_stream_writer.h" |
16 #include "webkit/browser/fileapi/file_system_context.h" | 16 #include "storage/browser/fileapi/file_system_context.h" |
17 #include "webkit/common/fileapi/file_system_util.h" | 17 #include "storage/common/fileapi/file_system_util.h" |
18 | 18 |
19 namespace storage { | 19 namespace storage { |
20 | 20 |
21 static const int kReadBufSize = 32768; | 21 static const int kReadBufSize = 32768; |
22 | 22 |
23 FileWriterDelegate::FileWriterDelegate( | 23 FileWriterDelegate::FileWriterDelegate( |
24 scoped_ptr<FileStreamWriter> file_stream_writer, | 24 scoped_ptr<FileStreamWriter> file_stream_writer, |
25 FlushPolicy flush_policy) | 25 FlushPolicy flush_policy) |
26 : file_stream_writer_(file_stream_writer.Pass()), | 26 : file_stream_writer_(file_stream_writer.Pass()), |
27 writing_started_(false), | 27 writing_started_(false), |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 if (error == base::File::FILE_OK && flush_error != net::OK) { | 235 if (error == base::File::FILE_OK && flush_error != net::OK) { |
236 // If the Flush introduced an error, overwrite the status. | 236 // If the Flush introduced an error, overwrite the status. |
237 // Otherwise, keep the original error status. | 237 // Otherwise, keep the original error status. |
238 error = NetErrorToFileError(flush_error); | 238 error = NetErrorToFileError(flush_error); |
239 progress_status = GetCompletionStatusOnError(); | 239 progress_status = GetCompletionStatusOnError(); |
240 } | 240 } |
241 write_callback_.Run(error, bytes_written, progress_status); | 241 write_callback_.Run(error, bytes_written, progress_status); |
242 } | 242 } |
243 | 243 |
244 } // namespace storage | 244 } // namespace storage |
OLD | NEW |