| Index: webkit/fileapi/file_system_operation.h
|
| diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
|
| index 380e3ee51803e2c639695a5acfab758316f63c56..b9ceeebe04966f1fb7a0f3294642ce58c0c31f09 100644
|
| --- a/webkit/fileapi/file_system_operation.h
|
| +++ b/webkit/fileapi/file_system_operation.h
|
| @@ -13,7 +13,6 @@
|
| #include "base/gtest_prod_util.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| -#include "base/message_loop_proxy.h"
|
| #include "base/platform_file.h"
|
| #include "base/process.h"
|
| #include "googleurl/src/gurl.h"
|
| @@ -24,6 +23,7 @@
|
|
|
| namespace base {
|
| class Time;
|
| +class TaskRunner;
|
| }
|
|
|
| namespace chromeos {
|
| @@ -130,7 +130,7 @@ class FileSystemOperation : public FileSystemOperationInterface {
|
| friend class FileSystemTestOriginHelper;
|
| friend class FileSystemQuotaTest;
|
|
|
| - FileSystemOperation(scoped_refptr<base::MessageLoopProxy> proxy,
|
| + FileSystemOperation(base::TaskRunner* task_runner,
|
| FileSystemContext* file_system_context);
|
|
|
| FileSystemContext* file_system_context() const {
|
| @@ -236,8 +236,8 @@ class FileSystemOperation : public FileSystemOperationInterface {
|
| // Returns false if there's another inflight pending operation.
|
| bool SetPendingOperationType(OperationType type);
|
|
|
| - // Proxy for calling file_util_proxy methods.
|
| - scoped_refptr<base::MessageLoopProxy> proxy_;
|
| + // Task runner for making file operations.
|
| + scoped_refptr<base::TaskRunner> task_runner_;
|
|
|
| FileSystemOperationContext operation_context_;
|
| FileSystemPath src_path_;
|
|
|