summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_quota_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/fileapi/file_system_quota_util.h')
-rw-r--r--webkit/fileapi/file_system_quota_util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/webkit/fileapi/file_system_quota_util.h b/webkit/fileapi/file_system_quota_util.h
index 5ba638a..6063acf 100644
--- a/webkit/fileapi/file_system_quota_util.h
+++ b/webkit/fileapi/file_system_quota_util.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -14,7 +14,7 @@
#include "webkit/fileapi/file_system_types.h"
namespace base {
-class MessageLoopProxy;
+class SequencedTaskRunner;
}
namespace quota {
@@ -46,11 +46,11 @@ class FileSystemQuotaUtil {
friend class FileSystemQuotaUtil;
friend class base::RefCountedThreadSafe<Proxy>;
Proxy(FileSystemQuotaUtil* quota_handler,
- base::MessageLoopProxy* file_thread);
+ base::SequencedTaskRunner* file_task_runner);
~Proxy();
FileSystemQuotaUtil* quota_util_; // Accessed only on the FILE thread.
- scoped_refptr<base::MessageLoopProxy> file_thread_;
+ scoped_refptr<base::SequencedTaskRunner> file_task_runner_;
DISALLOW_COPY_AND_ASSIGN(Proxy);
};
@@ -97,7 +97,7 @@ class FileSystemQuotaUtil {
Proxy* proxy() { return proxy_.get(); }
protected:
- explicit FileSystemQuotaUtil(base::MessageLoopProxy* file_thread);
+ explicit FileSystemQuotaUtil(base::SequencedTaskRunner* file_task_runner);
virtual ~FileSystemQuotaUtil();
private: