[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 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 | |||||
Juan Jose Lopez Jaimez | 7fa1f00 | 2017-11-20 22:13:33 | [diff] [blame] | 5 | #include <memory> |
6 | |||||
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 7 | #include "net/http/url_security_manager.h" |
8 | |||||
[email protected] | b4955e7d | 2010-04-16 20:22:30 | [diff] [blame] | 9 | #include "net/http/http_auth_filter.h" |
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 10 | |
11 | namespace net { | ||||
12 | |||||
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 13 | // static |
Juan Jose Lopez Jaimez | 7fa1f00 | 2017-11-20 22:13:33 | [diff] [blame] | 14 | std::unique_ptr<URLSecurityManager> URLSecurityManager::Create() { |
15 | return std::make_unique<URLSecurityManagerWhitelist>(); | ||||
[email protected] | d7f1663 | 2010-03-29 18:02:36 | [diff] [blame] | 16 | } |
17 | |||||
18 | } // namespace net |