diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 21:34:02 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 21:34:02 +0000 |
commit | 6981d96328621a75557dbf843c5aab83bf4f55a3 (patch) | |
tree | 8a95daea7aad9b8bce1ced62fda4068ed296125a /chrome/browser/renderer_host/resource_handler.h | |
parent | d4e04a67c7f529bc8137c2dc5618e5a8c2123a13 (diff) | |
download | chromium_src-6981d96328621a75557dbf843c5aab83bf4f55a3.zip chromium_src-6981d96328621a75557dbf843c5aab83bf4f55a3.tar.gz chromium_src-6981d96328621a75557dbf843c5aab83bf4f55a3.tar.bz2 |
net: Remove typedef net::URLRequest URLRequest;
BUG=64263
TEST=compiled locally, trybots
Review URL: http://codereview.chromium.org/5384002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/renderer_host/resource_handler.h')
-rw-r--r-- | chrome/browser/renderer_host/resource_handler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/renderer_host/resource_handler.h b/chrome/browser/renderer_host/resource_handler.h index 56f70bd..bc05b17 100644 --- a/chrome/browser/renderer_host/resource_handler.h +++ b/chrome/browser/renderer_host/resource_handler.h @@ -48,11 +48,11 @@ class ResourceHandler virtual bool OnResponseStarted(int request_id, ResourceResponse* response) = 0; - // Called before the URLRequest for |request_id| (whose url is |url|) is to be - // started. If the handler returns false, then the request is cancelled. + // Called before the net::URLRequest for |request_id| (whose url is |url|) is + // to be started. If the handler returns false, then the request is cancelled. // Otherwise if the return value is true, the ResourceHandler can delay the // request from starting by setting |*defer = true|. A deferred request will - // not have called URLRequest::Start(), and will not resume until someone + // not have called net::URLRequest::Start(), and will not resume until someone // calls ResourceDispatcherHost::StartDeferredRequest(). virtual bool OnWillStart(int request_id, const GURL& url, bool* defer) = 0; @@ -77,7 +77,7 @@ class ResourceHandler const std::string& security_info) = 0; // Signals that the request is closed (i.e. finished successfully, cancelled). - // This is a signal that the associated URLRequest isn't valid anymore. + // This is a signal that the associated net::URLRequest isn't valid anymore. virtual void OnRequestClosed() = 0; // This notification is synthesized by the RedirectToFileResourceHandler |