Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Unified Diff: net/url_request/url_request_http_job.h

Issue 5607004: net: Remove typedef net::URLRequestJob URLRequestJob; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased 2 Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request_ftp_job.cc ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_http_job.h
diff --git a/net/url_request/url_request_http_job.h b/net/url_request/url_request_http_job.h
index 471b4066cfd2123dcd32b621ab7ab45e3396af6b..6f2beaf250e0e03f02210e1497181bb55b6ad547 100644
--- a/net/url_request/url_request_http_job.h
+++ b/net/url_request/url_request_http_job.h
@@ -24,17 +24,17 @@ class HttpTransaction;
}
class URLRequestContext;
-// A URLRequestJob subclass that is built on top of HttpTransaction. It
+// A net::URLRequestJob subclass that is built on top of HttpTransaction. It
// provides an implementation for both HTTP and HTTPS.
-class URLRequestHttpJob : public URLRequestJob {
+class URLRequestHttpJob : public net::URLRequestJob {
public:
- static URLRequestJob* Factory(net::URLRequest* request,
- const std::string& scheme);
+ static net::URLRequestJob* Factory(net::URLRequest* request,
+ const std::string& scheme);
protected:
explicit URLRequestHttpJob(net::URLRequest* request);
- // URLRequestJob methods:
+ // net::URLRequestJob methods:
virtual void SetUpload(net::UploadData* upload);
virtual void SetExtraRequestHeaders(const net::HttpRequestHeaders& headers);
virtual void Start();
@@ -61,7 +61,7 @@ class URLRequestHttpJob : public URLRequestJob {
virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
virtual void StopCaching();
- // Shadows URLRequestJob's version of this method so we can grab cookies.
+ // Shadows net::URLRequestJob's version of this method so we can grab cookies.
void NotifyHeadersComplete();
void DestroyTransaction();
« no previous file with comments | « net/url_request/url_request_ftp_job.cc ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698