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

Unified Diff: webkit/browser/fileapi/file_system_quota_util.h

Issue 101393006: FileAPI: Rename *OnFileThread to *OnFileTaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/browser/fileapi/file_system_quota_util.h
diff --git a/webkit/browser/fileapi/file_system_quota_util.h b/webkit/browser/fileapi/file_system_quota_util.h
index e3930862f8702e0be8ba10988d95f918fc1ed734..2005927ed696e0830206a43faf1ffd634c2bdf3a 100644
--- a/webkit/browser/fileapi/file_system_quota_util.h
+++ b/webkit/browser/fileapi/file_system_quota_util.h
@@ -38,21 +38,23 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemQuotaUtil {
// Deletes the data on the origin and reports the amount of deleted data
// to the quota manager via |proxy|.
- virtual base::PlatformFileError DeleteOriginDataOnFileThread(
+ virtual base::PlatformFileError DeleteOriginDataOnFileTaskRunner(
FileSystemContext* context,
quota::QuotaManagerProxy* proxy,
const GURL& origin_url,
FileSystemType type) = 0;
- virtual void GetOriginsForTypeOnFileThread(fileapi::FileSystemType type,
- std::set<GURL>* origins) = 0;
+ virtual void GetOriginsForTypeOnFileTaskRunner(
+ fileapi::FileSystemType type,
+ std::set<GURL>* origins) = 0;
- virtual void GetOriginsForHostOnFileThread(fileapi::FileSystemType type,
- const std::string& host,
- std::set<GURL>* origins) = 0;
+ virtual void GetOriginsForHostOnFileTaskRunner(
+ fileapi::FileSystemType type,
+ const std::string& host,
+ std::set<GURL>* origins) = 0;
// Returns the amount of data used for the origin for usage tracking.
- virtual int64 GetOriginUsageOnFileThread(
+ virtual int64 GetOriginUsageOnFileTaskRunner(
fileapi::FileSystemContext* file_system_context,
const GURL& origin_url,
fileapi::FileSystemType type) = 0;
« no previous file with comments | « webkit/browser/fileapi/file_system_quota_client.cc ('k') | webkit/browser/fileapi/plugin_private_file_system_backend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698