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

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

Issue 7282054: Remove more unnecessary ChromeURLRequestContext members. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix copyright and chormeos tests. Created 9 years, 5 months 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_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 e2a118b5357dfef44f1ce4aa57888665842cd477..7cb8fbc24e7a5be32d1fe7eaa2fb5a6f2e73267e 100644
--- a/chrome/browser/net/view_blob_internals_job_factory.h
+++ b/chrome/browser/net/view_blob_internals_job_factory.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -10,13 +10,18 @@ namespace net {
class URLRequest;
class URLRequestJob;
} // namespace net
+namespace webkit_blob {
+class BlobStorageController;
+} // webkit_blob
class GURL;
class ViewBlobInternalsJobFactory {
public:
static bool IsSupportedURL(const GURL& url);
- static net::URLRequestJob* CreateJobForRequest(net::URLRequest* request);
+ static net::URLRequestJob* CreateJobForRequest(
+ net::URLRequest* request,
+ webkit_blob::BlobStorageController* blob_storage_controller);
};
#endif // CHROME_BROWSER_NET_VIEW_BLOB_INTERNALS_JOB_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698