url_security_manager_posix.cc 449 B

123456789101112131415161718
  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. #include <memory>
  5. #include "net/http/url_security_manager.h"
  6. #include "net/http/http_auth_filter.h"
  7. namespace net {
  8. // static
  9. std::unique_ptr<URLSecurityManager> URLSecurityManager::Create() {
  10. return std::make_unique<URLSecurityManagerAllowlist>();
  11. }
  12. } // namespace net