Index: chrome/browser/renderer_host/resource_handler.h |
diff --git a/chrome/browser/renderer_host/resource_handler.h b/chrome/browser/renderer_host/resource_handler.h |
index 56f70bd50d2f2b92f7b793d57bf0023a72d577bd..bc05b17dcdf740e3a9443d45718f20cb88d2b536 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 |