Index: chrome/browser/net/view_blob_internals_job_factory.h |
diff --git a/chrome/browser/net/view_blob_internals_job_factory.h b/chrome/browser/net/view_blob_internals_job_factory.h |
index 874e2bda44c1e2da3785cbbac0a84858130ced3e..e2a118b5357dfef44f1ce4aa57888665842cd477 100644 |
--- a/chrome/browser/net/view_blob_internals_job_factory.h |
+++ b/chrome/browser/net/view_blob_internals_job_factory.h |
@@ -6,15 +6,17 @@ |
#define CHROME_BROWSER_NET_VIEW_BLOB_INTERNALS_JOB_FACTORY_H_ |
#pragma once |
-class GURL; |
+namespace net { |
class URLRequest; |
class URLRequestJob; |
+} // namespace net |
+ |
+class GURL; |
class ViewBlobInternalsJobFactory { |
public: |
static bool IsSupportedURL(const GURL& url); |
- static URLRequestJob* CreateJobForRequest(URLRequest* request); |
+ static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request); |
}; |
#endif // CHROME_BROWSER_NET_VIEW_BLOB_INTERNALS_JOB_FACTORY_H_ |
- |