| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 // When invalid parameters are set, the first call to Write() method fails. | 41 // When invalid parameters are set, the first call to Write() method fails. |
| 42 // Uses |file_task_runner| for local file operations. | 42 // Uses |file_task_runner| for local file operations. |
| 43 WebkitFileStreamWriterImpl(const FileSystemGetter& file_system_getter, | 43 WebkitFileStreamWriterImpl(const FileSystemGetter& file_system_getter, |
| 44 base::TaskRunner* file_task_runner, | 44 base::TaskRunner* file_task_runner, |
| 45 const base::FilePath& file_path, | 45 const base::FilePath& file_path, |
| 46 int64 offset); | 46 int64 offset); |
| 47 virtual ~WebkitFileStreamWriterImpl(); | 47 virtual ~WebkitFileStreamWriterImpl(); |
| 48 | 48 |
| 49 // FileWriter override. | 49 // FileWriter override. |
| 50 virtual int Write(net::IOBuffer* buf, int buf_len, | 50 virtual int Write(net::IOBuffer* buf, int buf_len, |
| 51 const net::CompletionCallback& callback) OVERRIDE; | 51 const net::CompletionCallback& callback) override; |
| 52 virtual int Cancel(const net::CompletionCallback& callback) OVERRIDE; | 52 virtual int Cancel(const net::CompletionCallback& callback) override; |
| 53 virtual int Flush(const net::CompletionCallback& callback) OVERRIDE; | 53 virtual int Flush(const net::CompletionCallback& callback) override; |
| 54 | 54 |
| 55 private: | 55 private: |
| 56 // Part of Write(). Called after CreateWritableSnapshotFile is completed. | 56 // Part of Write(). Called after CreateWritableSnapshotFile is completed. |
| 57 void WriteAfterCreateWritableSnapshotFile( | 57 void WriteAfterCreateWritableSnapshotFile( |
| 58 net::IOBuffer* buf, | 58 net::IOBuffer* buf, |
| 59 int buf_len, | 59 int buf_len, |
| 60 base::File::Error open_result, | 60 base::File::Error open_result, |
| 61 const base::FilePath& local_path, | 61 const base::FilePath& local_path, |
| 62 const base::Closure& close_callback_on_ui_thread); | 62 const base::Closure& close_callback_on_ui_thread); |
| 63 | 63 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 75 // invalidate the weak pointers before any other members are destroyed. | 75 // invalidate the weak pointers before any other members are destroyed. |
| 76 base::WeakPtrFactory<WebkitFileStreamWriterImpl> weak_ptr_factory_; | 76 base::WeakPtrFactory<WebkitFileStreamWriterImpl> weak_ptr_factory_; |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(WebkitFileStreamWriterImpl); | 78 DISALLOW_COPY_AND_ASSIGN(WebkitFileStreamWriterImpl); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace internal | 81 } // namespace internal |
| 82 } // namespace drive | 82 } // namespace drive |
| 83 | 83 |
| 84 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_
H_ | 84 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_FILEAPI_WEBKIT_FILE_STREAM_WRITER_IMPL_
H_ |
| OLD | NEW |