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 7#include "net/http/http_auth_filter.h" 8 9namespace net { 10 11// static 12URLSecurityManager* URLSecurityManager::Create( 13 const HttpAuthFilter* whitelist_default, 14 const HttpAuthFilter* whitelist_delegate) { 15 return new URLSecurityManagerWhitelist(whitelist_default, whitelist_delegate); 16} 17 18} // namespace net 19