Index: webkit/fileapi/file_writer_delegate.h |
diff --git a/webkit/fileapi/file_writer_delegate.h b/webkit/fileapi/file_writer_delegate.h |
index dbb2d7c140f181ab7e5ee13203674567284324a7..4b37af0f8ed3f0f5a32fbfde491487e7feedd3bb 100644 |
--- a/webkit/fileapi/file_writer_delegate.h |
+++ b/webkit/fileapi/file_writer_delegate.h |
@@ -8,7 +8,6 @@ |
#include "base/file_path.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
-#include "base/message_loop_proxy.h" |
#include "base/platform_file.h" |
#include "base/time.h" |
#include "net/base/file_stream.h" |
@@ -27,8 +26,7 @@ class FileWriterDelegate : public net::URLRequest::Delegate { |
FileWriterDelegate( |
FileSystemOperation* write_operation, |
const FileSystemPath& path, |
- int64 offset, |
- scoped_refptr<base::MessageLoopProxy> proxy); |
+ int64 offset); |
virtual ~FileWriterDelegate(); |
void Start(base::PlatformFile file, |
@@ -71,7 +69,6 @@ class FileWriterDelegate : public net::URLRequest::Delegate { |
FileSystemPath path_; |
int64 size_; |
int64 offset_; |
- scoped_refptr<base::MessageLoopProxy> proxy_; |
base::Time last_progress_event_time_; |
int bytes_written_backlog_; |
int bytes_written_; |