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

Unified Diff: chrome/browser/extensions/url_request_util.h

Issue 229733002: Toro: Move ExtensionProtocolHandler to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move file, cleanup (extension-protocols) Created 6 years, 8 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/extensions/url_request_util.h
diff --git a/chrome/browser/extensions/url_request_util.h b/chrome/browser/extensions/url_request_util.h
new file mode 100644
index 0000000000000000000000000000000000000000..a6056f3dbaae59929762e10c881eb9d6faaf36a0
--- /dev/null
+++ b/chrome/browser/extensions/url_request_util.h
@@ -0,0 +1,47 @@
+// Copyright 2014 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.
+
+#ifndef CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_
+#define CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_
+
+#include <string>
+
+namespace base {
+class FilePath;
+}
+
+namespace net {
+class NetworkDelegate;
+class URLRequest;
+class URLRequestJob;
+}
+
+namespace extensions {
+class Extension;
+class InfoMap;
+
+// Utilities related to URLRequest jobs for extension resources.
+namespace url_request_util {
+
+// Returns true to allow a chrome-extension:// resource request coming from
+// renderer A to access a resource in an extension running in renderer B.
+bool AllowCrossRendererResourceLoad(net::URLRequest* request,
+ bool is_incognito,
+ const Extension* extension,
+ InfoMap* extension_info_map);
+
+// Creates a URLRequestJob for loading component extension resources out of
+// a Chrome resource bundle. Returns NULL if the requested resource is not a
+// component extension resource.
+net::URLRequestJob* MaybeCreateURLRequestResourceBundleJob(
+ net::URLRequest* request,
+ net::NetworkDelegate* network_delegate,
+ const base::FilePath& directory_path,
+ const std::string& content_security_policy,
+ bool send_cors_header);
+
+} // namespace url_request_util
+} // namespace extensions
+
+#endif // CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_

Powered by Google App Engine
This is Rietveld 408576698