[email protected] | a8c1e745 | 2011-05-14 06:17:07 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
[email protected] | 8289126 | 2008-12-24 00:21:26 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 13a96c98 | 2009-01-09 21:30:28 | [diff] [blame] | 5 | #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_ |
6 | #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_ | ||||
[email protected] | 32b76ef | 2010-07-26 23:08:24 | [diff] [blame] | 7 | #pragma once |
[email protected] | 8f704c8 | 2009-01-08 21:47:41 | [diff] [blame] | 8 | |
[email protected] | a8c1e745 | 2011-05-14 06:17:07 | [diff] [blame] | 9 | #include "net/url_request/url_request_job_factory.h" |
10 | |||||
11 | class ExtensionInfoMap; | ||||
[email protected] | a8c1e745 | 2011-05-14 06:17:07 | [diff] [blame] | 12 | |
13 | // Creates the handlers for the chrome-extension:// scheme. | ||||
14 | net::URLRequestJobFactory::ProtocolHandler* CreateExtensionProtocolHandler( | ||||
15 | bool is_incognito, | ||||
16 | ExtensionInfoMap* extension_info_map); | ||||
17 | |||||
[email protected] | 13a96c98 | 2009-01-09 21:30:28 | [diff] [blame] | 18 | #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_ |