Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Unified Diff: webkit/fileapi/file_system_mount_point_provider.h

Issue 10197007: Change webkit/{fileapi,quota} code to use TaskRunner. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test fix Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/fileapi/file_system_mount_point_provider.h
diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
index 18e1d9ab2973d7fbc4d954073a46800a08dc24da..51e049ebbb469fbe2e5a9f5ad1b7d2219d68a381 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -17,7 +17,7 @@
class GURL;
namespace base {
-class MessageLoopProxy;
+class TaskRunner;
}
namespace webkit_blob {
@@ -92,7 +92,7 @@ class FileSystemMountPointProvider {
const GURL& origin_url,
FileSystemType file_system_type,
const FilePath& virtual_path,
- base::MessageLoopProxy* file_proxy,
+ base::TaskRunner* task_runner,
michaeln 2012/04/27 01:04:03 SequencedTaskRunner?
kinuko 2012/04/27 10:10:29 Done.
FileSystemContext* context) const = 0;
// Creates a new file reader for a given filesystem URL |url| with a offset
@@ -103,7 +103,7 @@ class FileSystemMountPointProvider {
virtual webkit_blob::FileReader* CreateFileReader(
const GURL& url,
int64 offset,
- base::MessageLoopProxy* file_proxy,
+ base::TaskRunner* task_runner,
michaeln 2012/04/27 01:04:03 SequencedTaskRunner?
kinuko 2012/04/27 10:10:29 Done.
FileSystemContext* context) const = 0;
};

Powered by Google App Engine
This is Rietveld 408576698