summaryrefslogtreecommitdiffstats
path: root/webkit/blob
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-28 13:11:52 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-28 13:11:52 +0000
commitedfe7faba2f8685eb84b1821ba6fa054297e71fc (patch)
treeb818efe30d5c178c8358cf75baffe371b5374109 /webkit/blob
parentc0528f5013e9039d699dba6682bce248672d3937 (diff)
downloadchromium_src-edfe7faba2f8685eb84b1821ba6fa054297e71fc.zip
chromium_src-edfe7faba2f8685eb84b1821ba6fa054297e71fc.tar.gz
chromium_src-edfe7faba2f8685eb84b1821ba6fa054297e71fc.tar.bz2
net: Add namespace net to URLRequest and URLRequestJob classes.
BUG=64263 TEST=compiled locally and trybots Review URL: http://codereview.chromium.org/5298008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67497 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/blob')
-rw-r--r--webkit/blob/blob_url_request_job.h4
-rw-r--r--webkit/blob/view_blob_internals_job.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/webkit/blob/blob_url_request_job.h b/webkit/blob/blob_url_request_job.h
index 8a859cc..53414cd 100644
--- a/webkit/blob/blob_url_request_job.h
+++ b/webkit/blob/blob_url_request_job.h
@@ -23,9 +23,9 @@ struct PlatformFileInfo;
namespace webkit_blob {
// A request job that handles reading blob URLs.
-class BlobURLRequestJob : public URLRequestJob {
+class BlobURLRequestJob : public net::URLRequestJob {
public:
- BlobURLRequestJob(URLRequest* request,
+ BlobURLRequestJob(net::URLRequest* request,
BlobData* blob_data,
base::MessageLoopProxy* resolving_message_loop_proxy);
virtual ~BlobURLRequestJob();
diff --git a/webkit/blob/view_blob_internals_job.h b/webkit/blob/view_blob_internals_job.h
index 0248153..913531c 100644
--- a/webkit/blob/view_blob_internals_job.h
+++ b/webkit/blob/view_blob_internals_job.h
@@ -9,7 +9,9 @@
#include "net/url_request/url_request_simple_job.h"
+namespace net {
class URLRequest;
+} // namespace net
namespace webkit_blob {
@@ -20,7 +22,7 @@ class BlobStorageController;
// state of blob registry.
class ViewBlobInternalsJob : public URLRequestSimpleJob {
public:
- ViewBlobInternalsJob(URLRequest* request,
+ ViewBlobInternalsJob(net::URLRequest* request,
BlobStorageController* blob_storage_controller);
virtual void Start();