test_root_certs_builtin.cc 431 B

12345678910111213141516171819
  1. // Copyright 2017 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 "net/cert/test_root_certs.h"
  5. namespace net {
  6. bool TestRootCerts::AddImpl(X509Certificate* certificate) {
  7. return true;
  8. }
  9. void TestRootCerts::ClearImpl() {}
  10. TestRootCerts::~TestRootCerts() = default;
  11. void TestRootCerts::Init() {}
  12. } // namespace net