Index: webkit/fileapi/file_system_context.h |
diff --git a/webkit/fileapi/file_system_context.h b/webkit/fileapi/file_system_context.h |
index f80e5f0ab0378af2239ea1bc818bbd2d3b26972c..9a480239bdb41151d428f578a5ca112f13482ed0 100644 |
--- a/webkit/fileapi/file_system_context.h |
+++ b/webkit/fileapi/file_system_context.h |
@@ -7,6 +7,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
+#include "webkit/fileapi/file_system_types.h" |
#include "webkit/quota/special_storage_policy.h" |
class FilePath; |
@@ -50,7 +51,9 @@ class FileSystemContext |
// This method can be called on any thread. |
bool IsStorageUnlimited(const GURL& origin); |
- void DeleteDataForOriginOnFileThread(const GURL& origin_url); |
+ bool DeleteDataForOriginOnFileThread(const GURL& origin_url); |
+ bool DeleteDataForOriginAndTypeOnFileThread(const GURL& origin_url, |
+ FileSystemType type); |
FileSystemPathManager* path_manager() const { return path_manager_.get(); } |
quota::QuotaManagerProxy* quota_manager_proxy() const { |