| Index: net/url_request/url_request_test_job.h
|
| diff --git a/net/url_request/url_request_test_job.h b/net/url_request/url_request_test_job.h
|
| index 14b90d480d7a5c1b29cf31cb93bb2e95d3d1514d..ec92dc26b940f0ffeb55a5c29871fb377f5c1f74 100644
|
| --- a/net/url_request/url_request_test_job.h
|
| +++ b/net/url_request/url_request_test_job.h
|
| @@ -37,16 +37,16 @@ class URLRequestTestJob : public net::URLRequestJob {
|
| public:
|
| // Constructs a job to return one of the canned responses depending on the
|
| // request url, with auto advance disabled.
|
| - explicit URLRequestTestJob(URLRequest* request);
|
| + explicit URLRequestTestJob(net::URLRequest* request);
|
|
|
| // Constructs a job to return one of the canned responses depending on the
|
| // request url, optionally with auto advance enabled.
|
| - explicit URLRequestTestJob(URLRequest* request, bool auto_advance);
|
| + explicit URLRequestTestJob(net::URLRequest* request, bool auto_advance);
|
|
|
| // Constructs a job to return the given response regardless of the request
|
| // url. The headers should include the HTTP status line and be formatted as
|
| // expected by net::HttpResponseHeaders.
|
| - explicit URLRequestTestJob(URLRequest* request,
|
| + explicit URLRequestTestJob(net::URLRequest* request,
|
| const std::string& response_headers,
|
| const std::string& response_data,
|
| bool auto_advance);
|
| @@ -86,7 +86,7 @@ class URLRequestTestJob : public net::URLRequestJob {
|
| void set_auto_advance(bool auto_advance) { auto_advance_ = auto_advance; }
|
|
|
| // Factory method for protocol factory registration if callers don't subclass
|
| - static URLRequest::ProtocolFactory Factory;
|
| + static net::URLRequest::ProtocolFactory Factory;
|
|
|
| // Job functions
|
| virtual void Start();
|
|
|