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

Unified Diff: webkit/fileapi/file_system_context.cc

Issue 10449028: Revert 138444 - Always pass FileSystemContext to ObfuscatedFileUtil operations (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1151/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « chrome/browser/browsing_data_file_system_helper.cc ('k') | webkit/fileapi/file_system_quota_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_context.cc
===================================================================
--- webkit/fileapi/file_system_context.cc (revision 139069)
+++ webkit/fileapi/file_system_context.cc (working copy)
@@ -78,9 +78,9 @@
// Delete temporary and persistent data.
return
sandbox_provider()->DeleteOriginDataOnFileThread(
- this, quota_manager_proxy(), origin_url, kFileSystemTypeTemporary) &&
+ quota_manager_proxy(), origin_url, kFileSystemTypeTemporary) &&
sandbox_provider()->DeleteOriginDataOnFileThread(
- this, quota_manager_proxy(), origin_url, kFileSystemTypePersistent);
+ quota_manager_proxy(), origin_url, kFileSystemTypePersistent);
}
bool FileSystemContext::DeleteDataForOriginAndTypeOnFileThread(
@@ -90,7 +90,7 @@
type == fileapi::kFileSystemTypePersistent) {
DCHECK(sandbox_provider());
return sandbox_provider()->DeleteOriginDataOnFileThread(
- this, quota_manager_proxy(), origin_url, type);
+ quota_manager_proxy(), origin_url, type);
}
return false;
}
« no previous file with comments | « chrome/browser/browsing_data_file_system_helper.cc ('k') | webkit/fileapi/file_system_quota_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698