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

Unified Diff: chrome/browser/net/view_http_cache_job_factory.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/view_http_cache_job_factory.h
diff --git a/chrome/browser/net/view_http_cache_job_factory.h b/chrome/browser/net/view_http_cache_job_factory.h
index 6291902020816cdb1258f10f3abd825dd1bd29ca..eb164c58caccd29f2d28377e96d91feb9aaca3ce 100644
--- a/chrome/browser/net/view_http_cache_job_factory.h
+++ b/chrome/browser/net/view_http_cache_job_factory.h
@@ -6,14 +6,17 @@
#define CHROME_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_
#pragma once
-class GURL;
+namespace net {
class URLRequest;
class URLRequestJob;
+} // namespace net
+
+class GURL;
class ViewHttpCacheJobFactory {
public:
static bool IsSupportedURL(const GURL& url);
- static URLRequestJob* CreateJobForRequest(URLRequest* request);
+ static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request);
};
#endif // CHROME_BROWSER_NET_VIEW_HTTP_CACHE_JOB_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698