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

Unified Diff: net/url_request/url_request_ftp_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_file_job.cc ('k') | net/url_request/url_request_ftp_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_ftp_job.h
diff --git a/net/url_request/url_request_ftp_job.h b/net/url_request/url_request_ftp_job.h
index 708dc6dd8e026d9537673a06e028d482aec68690..c4b6fbd2c2e719658d77190820c23d0c46d7f41c 100644
--- a/net/url_request/url_request_ftp_job.h
+++ b/net/url_request/url_request_ftp_job.h
@@ -18,23 +18,23 @@
class URLRequestContext;
-// A URLRequestJob subclass that is built on top of FtpTransaction. It
+// A net::URLRequestJob subclass that is built on top of FtpTransaction. It
// provides an implementation for FTP.
-class URLRequestFtpJob : public URLRequestJob {
+class URLRequestFtpJob : public net::URLRequestJob {
public:
explicit URLRequestFtpJob(net::URLRequest* request);
- static URLRequestJob* Factory(net::URLRequest* request,
- const std::string& scheme);
+ static net::URLRequestJob* Factory(net::URLRequest* request,
+ const std::string& scheme);
- // URLRequestJob methods:
+ // net::URLRequestJob methods:
virtual bool GetMimeType(std::string* mime_type) const;
private:
virtual ~URLRequestFtpJob();
- // URLRequestJob methods:
+ // net::URLRequestJob methods:
virtual void Start();
virtual void Kill();
virtual net::LoadState GetLoadState() const;
« no previous file with comments | « net/url_request/url_request_file_job.cc ('k') | net/url_request/url_request_ftp_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698