Index: content/browser/file_system/file_system_dispatcher_host.h |
=================================================================== |
--- content/browser/file_system/file_system_dispatcher_host.h (revision 85048) |
+++ content/browser/file_system/file_system_dispatcher_host.h (working copy) |
@@ -13,7 +13,6 @@ |
#include "webkit/fileapi/file_system_types.h" |
class GURL; |
-class HostContentSettingsMap; |
class Profile; |
class Receiver; |
class RenderMessageFilter; |
@@ -38,12 +37,10 @@ |
class FileSystemDispatcherHost : public BrowserMessageFilter { |
public: |
// Used by the renderer. |
- FileSystemDispatcherHost( |
- const content::ResourceContext* resource_context, |
- HostContentSettingsMap* host_content_settings_map); |
+ explicit FileSystemDispatcherHost( |
+ const content::ResourceContext* resource_context); |
// Used by the worker, since it has the context handy already. |
FileSystemDispatcherHost(net::URLRequestContext* request_context, |
- HostContentSettingsMap* host_content_settings_map, |
fileapi::FileSystemContext* file_system_context); |
~FileSystemDispatcherHost(); |
@@ -92,9 +89,6 @@ |
fileapi::FileSystemContext* context_; |
- // Used to look up permissions. |
- scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
- |
// Keeps ongoing file system operations. |
typedef IDMap<fileapi::FileSystemOperation> OperationsMap; |
OperationsMap operations_; |