Update V8 to version 4.7.53.
[chromium-blink-merge.git] / net / http / url_security_manager_posix.cc
blobd3b42fb743f639bdfa4b2332caca912c540fc320
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"
9 namespace net {
11 // static
12 URLSecurityManager* URLSecurityManager::Create(
13 const HttpAuthFilter* whitelist_default,
14 const HttpAuthFilter* whitelist_delegate) {
15 return new URLSecurityManagerWhitelist(whitelist_default, whitelist_delegate);
18 } // namespace net