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

Side by Side Diff: chrome/browser/extensions/url_request_util.h

Issue 546633003: Move ExtensionProtocolsTest back to src/chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (extension-protocols) typo Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_
6 #define CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_ 6 #define CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace base { 10 namespace base {
11 class FilePath; 11 class FilePath;
12 } 12 }
13 13
14 namespace net { 14 namespace net {
15 class NetworkDelegate; 15 class NetworkDelegate;
16 class URLRequest; 16 class URLRequest;
17 class URLRequestJob; 17 class URLRequestJob;
18 } 18 }
19 19
20 namespace extensions { 20 namespace extensions {
21 class Extension; 21 class Extension;
22 class InfoMap; 22 class InfoMap;
23 23
24 // Utilities related to URLRequest jobs for extension resources. 24 // Utilities related to URLRequest jobs for extension resources. See
25 // chrome/browser/extensions/extension_protocols_unittest.cc for related tests.
25 namespace url_request_util { 26 namespace url_request_util {
26 27
27 // Returns true to allow a chrome-extension:// resource request coming from 28 // Returns true to allow a chrome-extension:// resource request coming from
28 // renderer A to access a resource in an extension running in renderer B. 29 // renderer A to access a resource in an extension running in renderer B.
29 bool AllowCrossRendererResourceLoad(net::URLRequest* request, 30 bool AllowCrossRendererResourceLoad(net::URLRequest* request,
30 bool is_incognito, 31 bool is_incognito,
31 const Extension* extension, 32 const Extension* extension,
32 InfoMap* extension_info_map); 33 InfoMap* extension_info_map);
33 34
34 // Creates a URLRequestJob for loading component extension resources out of 35 // Creates a URLRequestJob for loading component extension resources out of
35 // a Chrome resource bundle. Returns NULL if the requested resource is not a 36 // a Chrome resource bundle. Returns NULL if the requested resource is not a
36 // component extension resource. 37 // component extension resource.
37 net::URLRequestJob* MaybeCreateURLRequestResourceBundleJob( 38 net::URLRequestJob* MaybeCreateURLRequestResourceBundleJob(
38 net::URLRequest* request, 39 net::URLRequest* request,
39 net::NetworkDelegate* network_delegate, 40 net::NetworkDelegate* network_delegate,
40 const base::FilePath& directory_path, 41 const base::FilePath& directory_path,
41 const std::string& content_security_policy, 42 const std::string& content_security_policy,
42 bool send_cors_header); 43 bool send_cors_header);
43 44
44 // Returns true if |request| corresponds to a resource request from a 45 // Returns true if |request| corresponds to a resource request from a
45 // <webview>. 46 // <webview>.
46 bool IsWebViewRequest(net::URLRequest* request); 47 bool IsWebViewRequest(net::URLRequest* request);
47 48
48 } // namespace url_request_util 49 } // namespace url_request_util
49 } // namespace extensions 50 } // namespace extensions
50 51
51 #endif // CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_ 52 #endif // CHROME_BROWSER_EXTENSIONS_URL_REQUEST_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_protocols_unittest.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698