blob: a0bc27d335f7e4ba93a5fad754354ae9c383c6b0 [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
Juan Jose Lopez Jaimez7fa1f002017-11-20 22:13:335#include <memory>
6
[email protected]d7f16632010-03-29 18:02:367#include "net/http/url_security_manager.h"
8
[email protected]b4955e7d2010-04-16 20:22:309#include "net/http/http_auth_filter.h"
[email protected]d7f16632010-03-29 18:02:3610
11namespace net {
12
[email protected]d7f16632010-03-29 18:02:3613// static
Juan Jose Lopez Jaimez7fa1f002017-11-20 22:13:3314std::unique_ptr<URLSecurityManager> URLSecurityManager::Create() {
15 return std::make_unique<URLSecurityManagerWhitelist>();
[email protected]d7f16632010-03-29 18:02:3616}
17
18} // namespace net