Index: net/url_request/url_request_error_job.cc |
diff --git a/net/url_request/url_request_error_job.cc b/net/url_request/url_request_error_job.cc |
index c8f350b37f8508fe1018f41428cbd879c6bd5d74..c69e3f57733062840c91fe05b4b61e0509a32d46 100644 |
--- a/net/url_request/url_request_error_job.cc |
+++ b/net/url_request/url_request_error_job.cc |
@@ -8,8 +8,10 @@ |
#include "net/base/net_errors.h" |
#include "net/url_request/url_request_status.h" |
-URLRequestErrorJob::URLRequestErrorJob(net::URLRequest* request, int error) |
- : net::URLRequestJob(request), error_(error) { |
+namespace net { |
+ |
+URLRequestErrorJob::URLRequestErrorJob(URLRequest* request, int error) |
+ : URLRequestJob(request), error_(error) { |
} |
void URLRequestErrorJob::Start() { |
@@ -20,3 +22,5 @@ void URLRequestErrorJob::Start() { |
void URLRequestErrorJob::StartAsync() { |
NotifyStartError(URLRequestStatus(URLRequestStatus::FAILED, error_)); |
} |
+ |
+} // namespace net |