blob: 67b634ae7eaec7c5391a8843d0146ff1f8964d02 [file] [log] [blame]
[email protected]a8c1e7452011-05-14 06:17:071// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]82891262008-12-24 00:21:262// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]13a96c982009-01-09 21:30:285#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_
6#define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_
[email protected]32b76ef2010-07-26 23:08:247#pragma once
[email protected]8f704c82009-01-08 21:47:418
[email protected]a8c1e7452011-05-14 06:17:079#include "net/url_request/url_request_job_factory.h"
10
11class ExtensionInfoMap;
[email protected]a8c1e7452011-05-14 06:17:0712
13// Creates the handlers for the chrome-extension:// scheme.
14net::URLRequestJobFactory::ProtocolHandler* CreateExtensionProtocolHandler(
15 bool is_incognito,
16 ExtensionInfoMap* extension_info_map);
17
[email protected]13a96c982009-01-09 21:30:2818#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROTOCOLS_H_