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

Unified Diff: chrome/browser/appcache/view_appcache_internals_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/appcache/view_appcache_internals_job_factory.h
diff --git a/chrome/browser/appcache/view_appcache_internals_job_factory.h b/chrome/browser/appcache/view_appcache_internals_job_factory.h
index 66ae0e21fbfe1131103c9baf2f4e01767ffce644..45fdff37cc373d1336b45e5d6edab7a0d2c9a29a 100644
--- a/chrome/browser/appcache/view_appcache_internals_job_factory.h
+++ b/chrome/browser/appcache/view_appcache_internals_job_factory.h
@@ -6,14 +6,17 @@
#define CHROME_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_FACTORY_H_
#pragma once
-class GURL;
+namespace net {
class URLRequest;
class URLRequestJob;
+} // namespace net
+
+class GURL;
class ViewAppCacheInternalsJobFactory {
public:
static bool IsSupportedURL(const GURL& url);
- static URLRequestJob* CreateJobForRequest(URLRequest* request);
+ static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request);
};
#endif // CHROME_BROWSER_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698