Index: webkit/fileapi/file_system_file_reader.h |
diff --git a/webkit/fileapi/file_system_file_reader.h b/webkit/fileapi/file_system_file_reader.h |
index cc9a4f35b80e22c880f34d2df96aaae0c93b04d3..1167bb92d89569f6c2c84931e5b5f75491a9ec92 100644 |
--- a/webkit/fileapi/file_system_file_reader.h |
+++ b/webkit/fileapi/file_system_file_reader.h |
@@ -15,7 +15,7 @@ |
class FilePath; |
namespace base { |
-class MessageLoopProxy; |
+class SequencedTaskRunner; |
} |
namespace webkit_blob { |
@@ -34,7 +34,7 @@ class FileSystemContext; |
class FileSystemFileReader : public webkit_blob::FileReader { |
public: |
// Creates a new FileReader for a filesystem URL |url| form |initial_offset|. |
- FileSystemFileReader(base::MessageLoopProxy* file_thread_proxy, |
+ FileSystemFileReader(base::SequencedTaskRunner* task_runner, |
FileSystemContext* file_system_context, |
const GURL& url, |
int64 initial_offset); |
@@ -53,7 +53,7 @@ class FileSystemFileReader : public webkit_blob::FileReader { |
const FilePath& platform_path, |
const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref); |
- scoped_refptr<base::MessageLoopProxy> file_thread_proxy_; |
+ scoped_refptr<base::SequencedTaskRunner> task_runner_; |
scoped_refptr<FileSystemContext> file_system_context_; |
const GURL url_; |
const int64 initial_offset_; |