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

Unified Diff: content/browser/file_system/file_system_dispatcher_host.h

Issue 7012007: Chrome side of having the WebKit FileSystem API use WebPermissionClient for checking if using fil... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
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_;
« no previous file with comments | « content/browser/content_browser_client.h ('k') | content/browser/file_system/file_system_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698