summaryrefslogtreecommitdiffstats
path: root/webkit/blob
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/blob')
-rw-r--r--webkit/blob/view_blob_internals_job.cc4
-rw-r--r--webkit/blob/view_blob_internals_job.h2
2 files changed, 3 insertions, 3 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();
}
diff --git a/webkit/blob/view_blob_internals_job.h b/webkit/blob/view_blob_internals_job.h
index 2f557ae..547bf40 100644
--- a/webkit/blob/view_blob_internals_job.h
+++ b/webkit/blob/view_blob_internals_job.h
@@ -21,7 +21,7 @@ class BlobStorageController;
// A job subclass that implements a protocol to inspect the internal
// state of blob registry.
-class ViewBlobInternalsJob : public URLRequestSimpleJob {
+class ViewBlobInternalsJob : public net::URLRequestSimpleJob {
public:
ViewBlobInternalsJob(net::URLRequest* request,
BlobStorageController* blob_storage_controller);