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

Unified Diff: chrome/browser/browsing_data/browsing_data_file_system_helper.h

Issue 10909182: Make FileSystemContext respect StoragePartitions. filesystem:// urls will be properly isolated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch unittest fix from michael Created 8 years, 3 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: chrome/browser/browsing_data/browsing_data_file_system_helper.h
diff --git a/chrome/browser/browsing_data/browsing_data_file_system_helper.h b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
index 89d685c899d8c452c7fa4e0177abee0c8d1496ab..8029a365df8a54539ddad67df28b8539bf9d98ed 100644
--- a/chrome/browser/browsing_data/browsing_data_file_system_helper.h
+++ b/chrome/browser/browsing_data/browsing_data_file_system_helper.h
@@ -18,6 +18,10 @@
#include "googleurl/src/gurl.h"
#include "webkit/fileapi/file_system_types.h"
+namespace fileapi {
+class FileSystemContext;
+}
+
class Profile;
// Defines an interface for classes that deal with aggregating and deleting
@@ -70,7 +74,8 @@ class BrowsingDataFileSystemHelper
//
// The BrowsingDataFileSystemHelper will not change the profile itself, but
// can modify data it contains (by removing file systems).
- static BrowsingDataFileSystemHelper* Create(Profile* profile);
+ static BrowsingDataFileSystemHelper* Create(
+ fileapi::FileSystemContext* file_system_context);
// Starts the process of fetching file system data, which will call |callback|
// upon completion, passing it a constant list of FileSystemInfo objects.

Powered by Google App Engine
This is Rietveld 408576698