Index: webkit/fileapi/file_system_quota_client.h |
diff --git a/webkit/fileapi/file_system_quota_client.h b/webkit/fileapi/file_system_quota_client.h |
index d5d64031af529a9da24ff735675bb1e8eea4479f..6adf15a2c946f5473412e02ea0331ed9637d789d 100644 |
--- a/webkit/fileapi/file_system_quota_client.h |
+++ b/webkit/fileapi/file_system_quota_client.h |
@@ -17,6 +17,10 @@ |
#include "webkit/quota/quota_client.h" |
#include "webkit/quota/quota_task.h" |
+namespace base { |
+class TaskRunner; |
+} |
+ |
namespace fileapi { |
class FileSystemContext; |
@@ -30,7 +34,7 @@ class FileSystemQuotaClient : public quota::QuotaClient, |
public quota::QuotaTaskObserver { |
public: |
FileSystemQuotaClient( |
- scoped_refptr<base::MessageLoopProxy> file_message_loop, |
+ base::TaskRunner* file_task_runner, |
michaeln
2012/04/27 01:04:03
i think since the QuotaManager wants operations to
kinuko
2012/04/27 10:10:29
Done.
|
FileSystemContext* file_system_context, |
bool is_incognito); |
virtual ~FileSystemQuotaClient(); |
@@ -83,7 +87,7 @@ class FileSystemQuotaClient : public quota::QuotaClient, |
void DidGetOriginsForHost(const TypeAndHostOrOrigin& type_and_host, |
const std::set<GURL>& origins); |
- scoped_refptr<base::MessageLoopProxy> file_message_loop_; |
+ scoped_refptr<base::TaskRunner> file_task_runner_; |
scoped_refptr<FileSystemContext> file_system_context_; |
bool is_incognito_; |