 Chromium Code Reviews
 Chromium Code Reviews 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/
    
  
    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/| 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); | 
| 
michaeln
2011/05/12 02:57:18
nice!
 | 
| + 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_; |