blob: d3b42fb743f639bdfa4b2332caca912c540fc320 [file] [log] [blame]
[email protected]d7f16632010-03-29 18:02:361// 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]b4955e7d2010-04-16 20:22:307#include "net/http/http_auth_filter.h"
[email protected]d7f16632010-03-29 18:02:368
9namespace net {
10
[email protected]d7f16632010-03-29 18:02:3611// static
[email protected]930cbb52010-04-02 17:27:1012URLSecurityManager* URLSecurityManager::Create(
[email protected]d201b200e2010-08-27 17:35:0213 const HttpAuthFilter* whitelist_default,
14 const HttpAuthFilter* whitelist_delegate) {
15 return new URLSecurityManagerWhitelist(whitelist_default, whitelist_delegate);
[email protected]d7f16632010-03-29 18:02:3616}
17
18} // namespace net