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

Unified Diff: chrome/browser/net/url_request_slow_download_job.h

Issue 5298008: net: Add namespace net to URLRequest and URLRequestJob classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: some chromeos fixes Created 10 years, 1 month 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
Index: chrome/browser/net/url_request_slow_download_job.h
diff --git a/chrome/browser/net/url_request_slow_download_job.h b/chrome/browser/net/url_request_slow_download_job.h
index 9d92338c999649e9c18a672c90bd0fbbc6e5a056..22da86a6a452be762703c6a28ce9e05919a4f036 100644
--- a/chrome/browser/net/url_request_slow_download_job.h
+++ b/chrome/browser/net/url_request_slow_download_job.h
@@ -16,7 +16,7 @@
class URLRequestSlowDownloadJob : public URLRequestJob {
public:
- explicit URLRequestSlowDownloadJob(URLRequest* request);
+ explicit URLRequestSlowDownloadJob(net::URLRequest* request);
// Timer callback, used to check to see if we should finish our download and
// send the second chunk.
@@ -28,8 +28,8 @@ class URLRequestSlowDownloadJob : public URLRequestJob {
virtual void GetResponseInfo(net::HttpResponseInfo* info);
virtual bool ReadRawData(net::IOBuffer* buf, int buf_size, int *bytes_read);
- static URLRequestJob* Factory(URLRequest* request,
- const std::string& scheme);
+ static net::URLRequestJob* Factory(net::URLRequest* request,
+ const std::string& scheme);
// Test URLs.
static const char kUnknownSizeUrl[];

Powered by Google App Engine
This is Rietveld 408576698