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.
5 #include "net/http/url_security_manager.h"
7 #include "net/http/http_auth_filter.h"
12 URLSecurityManager
* URLSecurityManager::Create(
13 const HttpAuthFilter
* whitelist_default
,
14 const HttpAuthFilter
* whitelist_delegate
) {
15 return new URLSecurityManagerWhitelist(whitelist_default
, whitelist_delegate
);