diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 15:04:38 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-22 15:04:38 +0000 |
commit | 395045ce1c03cad228aa2769847aa67a45fa0250 (patch) | |
tree | 70c4f1bcbee20fde6f7295fedffb575f559614ca /content/public/browser/resource_dispatcher_host_delegate.h | |
parent | 04920e9208eb7a42db37e53ae528d120e92bd2ac (diff) | |
download | chromium_src-395045ce1c03cad228aa2769847aa67a45fa0250.zip chromium_src-395045ce1c03cad228aa2769847aa67a45fa0250.tar.gz chromium_src-395045ce1c03cad228aa2769847aa67a45fa0250.tar.bz2 |
Move TransferNavigationResourceThrottle to content since that's where it belongs. This is a step in getting rid of RenderViewHostDelegate usage in chrome, so that we can hide it.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/10414035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@138251 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/resource_dispatcher_host_delegate.h')
-rw-r--r-- | content/public/browser/resource_dispatcher_host_delegate.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/content/public/browser/resource_dispatcher_host_delegate.h b/content/public/browser/resource_dispatcher_host_delegate.h index 19cd6cf..d23c0da 100644 --- a/content/public/browser/resource_dispatcher_host_delegate.h +++ b/content/public/browser/resource_dispatcher_host_delegate.h @@ -47,10 +47,8 @@ class CONTENT_EXPORT ResourceDispatcherHostDelegate { ResourceContext* resource_context, const Referrer& referrer); - // Called after ShouldBeginRequest when all the resource handlers from the - // content layer have been added. To add new handlers to the front, return - // a new handler that is chained to the given one, otherwise just reutrn the - // given handler. + // Called after ShouldBeginRequest to allow the embedder to add resource + // throttles. virtual void RequestBeginning( net::URLRequest* request, ResourceContext* resource_context, |