summaryrefslogtreecommitdiffstats
path: root/webkit
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
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')
-rw-r--r--webkit/appcache/view_appcache_internals_job.cc5
-rw-r--r--webkit/appcache/view_appcache_internals_job.h2
-rw-r--r--webkit/blob/view_blob_internals_job.cc4
-rw-r--r--webkit/blob/view_blob_internals_job.h2
4 files changed, 7 insertions, 6 deletions
diff --git a/webkit/appcache/view_appcache_internals_job.cc b/webkit/appcache/view_appcache_internals_job.cc
index 7679dc8..12a2ab6 100644
--- a/webkit/appcache/view_appcache_internals_job.cc
+++ b/webkit/appcache/view_appcache_internals_job.cc
@@ -153,8 +153,9 @@ namespace appcache {
ViewAppCacheInternalsJob::ViewAppCacheInternalsJob(
net::URLRequest* request,
- AppCacheService* service) : URLRequestSimpleJob(request),
- appcache_service_(service) {
+ AppCacheService* service)
+ : net::URLRequestSimpleJob(request),
+ appcache_service_(service) {
}
ViewAppCacheInternalsJob::~ViewAppCacheInternalsJob() {
diff --git a/webkit/appcache/view_appcache_internals_job.h b/webkit/appcache/view_appcache_internals_job.h
index d9a705a..de2c736 100644
--- a/webkit/appcache/view_appcache_internals_job.h
+++ b/webkit/appcache/view_appcache_internals_job.h
@@ -18,7 +18,7 @@ namespace appcache {
// A job subclass that implements a protocol to inspect the internal
// state of appcache service.
-class ViewAppCacheInternalsJob : public URLRequestSimpleJob {
+class ViewAppCacheInternalsJob : public net::URLRequestSimpleJob {
public:
// Stores handle to appcache service for getting information.
ViewAppCacheInternalsJob(net::URLRequest* request, AppCacheService* service);
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);