summaryrefslogtreecommitdiffstats
path: root/webkit/blob/view_blob_internals_job.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 01:56:03 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 01:56:03 +0000
commit869775519cdb261bc24bd01ddfbbc06f34f4a97a (patch)
tree3b9ea8290befc05e3799b669e447dd86a6d46d45 /webkit/blob/view_blob_internals_job.cc
parentd277bb40a3190c5c1e10926ec35d8e19b8c01784 (diff)
downloadchromium_src-869775519cdb261bc24bd01ddfbbc06f34f4a97a.zip
chromium_src-869775519cdb261bc24bd01ddfbbc06f34f4a97a.tar.gz
chromium_src-869775519cdb261bc24bd01ddfbbc06f34f4a97a.tar.bz2
net: Add namespace net to URLRequestSimpleJob.
BUG=64263 TEST=compiled locally and trybots Review URL: http://codereview.chromium.org/5847001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69214 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/blob/view_blob_internals_job.cc')
-rw-r--r--webkit/blob/view_blob_internals_job.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/blob/view_blob_internals_job.cc b/webkit/blob/view_blob_internals_job.cc
index 49798b4..6c91f54 100644
--- a/webkit/blob/view_blob_internals_job.cc
+++ b/webkit/blob/view_blob_internals_job.cc
@@ -102,7 +102,7 @@ namespace webkit_blob {
ViewBlobInternalsJob::ViewBlobInternalsJob(
net::URLRequest* request, BlobStorageController* blob_storage_controller)
- : URLRequestSimpleJob(request),
+ : net::URLRequestSimpleJob(request),
blob_storage_controller_(blob_storage_controller),
ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)) {
}
@@ -130,7 +130,7 @@ bool ViewBlobInternalsJob::IsRedirectResponse(GURL* location,
}
void ViewBlobInternalsJob::Kill() {
- URLRequestSimpleJob::Kill();
+ net::URLRequestSimpleJob::Kill();
method_factory_.RevokeAll();
}