diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-29 02:58:07 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-29 02:58:07 +0000 |
commit | a1e6ad0532c7537ee72bcdce23fe8a8932114b5e (patch) | |
tree | 31800c70679ae35080f3dde03c0a3c9af929caa9 /content/browser/renderer_host/async_resource_handler.h | |
parent | 99f8e0d06b19334c93fd15b9e74feedc8971fa37 (diff) | |
download | chromium_src-a1e6ad0532c7537ee72bcdce23fe8a8932114b5e.zip chromium_src-a1e6ad0532c7537ee72bcdce23fe8a8932114b5e.tar.gz chromium_src-a1e6ad0532c7537ee72bcdce23fe8a8932114b5e.tar.bz2 |
Remove ChromeURLRequestContext from content/.
Takes the last remaining uses and kills them, or moves them into ResourceContext.
Some of the additions to ResourceContext don't belong there either and will need to be removed.
BUG=77086,78596
TEST=none
Review URL: http://codereview.chromium.org/6880263
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83483 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/async_resource_handler.h')
-rw-r--r-- | content/browser/renderer_host/async_resource_handler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/content/browser/renderer_host/async_resource_handler.h b/content/browser/renderer_host/async_resource_handler.h index 7046720..8c60256 100644 --- a/content/browser/renderer_host/async_resource_handler.h +++ b/content/browser/renderer_host/async_resource_handler.h @@ -10,6 +10,8 @@ #include "content/browser/renderer_host/resource_handler.h" +class HostContentSettingsMap; +class HostZoomMap; class ResourceDispatcherHost; class ResourceMessageFilter; class SharedIOBuffer; @@ -21,6 +23,8 @@ class AsyncResourceHandler : public ResourceHandler { AsyncResourceHandler(ResourceMessageFilter* filter, int routing_id, const GURL& url, + HostZoomMap* host_zoom_map, + HostContentSettingsMap* host_content_settings_map, ResourceDispatcherHost* resource_dispatcher_host); // ResourceHandler implementation: @@ -46,6 +50,8 @@ class AsyncResourceHandler : public ResourceHandler { scoped_refptr<SharedIOBuffer> read_buffer_; ResourceMessageFilter* filter_; int routing_id_; + HostZoomMap* host_zoom_map_; + HostContentSettingsMap* host_content_settings_map_; ResourceDispatcherHost* rdh_; // |next_buffer_size_| is the size of the buffer to be allocated on the next |