summaryrefslogtreecommitdiffstats
path: root/chrome/common/net/url_request_intercept_job.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/net/url_request_intercept_job.cc')
-rw-r--r--chrome/common/net/url_request_intercept_job.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/net/url_request_intercept_job.cc b/chrome/common/net/url_request_intercept_job.cc
index eb3b74f..04e9dd3 100644
--- a/chrome/common/net/url_request_intercept_job.cc
+++ b/chrome/common/net/url_request_intercept_job.cc
@@ -29,7 +29,7 @@ using base::TimeDelta;
URLRequestInterceptJob::URLRequestInterceptJob(net::URLRequest* request,
ChromePluginLib* plugin,
ScopableCPRequest* cprequest)
- : URLRequestJob(request),
+ : net::URLRequestJob(request),
cprequest_(cprequest),
plugin_(plugin),
read_buffer_(NULL),
@@ -67,7 +67,7 @@ void URLRequestInterceptJob::Kill() {
CPERR_CANCELLED);
DetachPlugin();
}
- URLRequestJob::Kill();
+ net::URLRequestJob::Kill();
method_factory_.RevokeAll();
}