[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 1 | // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "net/http/url_security_manager.h" | ||||
6 | |||||
[email protected] | b4955e7d | 2010-04-16 20:22:30 | [diff] [blame] | 7 | #include "net/http/http_auth_filter.h" |
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 8 | |
9 | namespace net { | ||||
10 | |||||
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 11 | // static |
[email protected] | 930cbb5 | 2010-04-02 17:27:10 | [diff] [blame] | 12 | URLSecurityManager* URLSecurityManager::Create( |
[email protected] | d201b200e | 2010-08-27 17:35:02 | [diff] [blame] | 13 | const HttpAuthFilter* whitelist_default, |
14 | const HttpAuthFilter* whitelist_delegate) { | ||||
15 | return new URLSecurityManagerWhitelist(whitelist_default, whitelist_delegate); | ||||
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 16 | } |
17 | |||||
18 | } // namespace net |