xref: /aosp_15_r20/external/cronet/net/cert/test_root_certs_builtin.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/cert/test_root_certs.h"
6 
7 namespace net {
8 
AddImpl(X509Certificate * certificate)9 bool TestRootCerts::AddImpl(X509Certificate* certificate) {
10   return true;
11 }
12 
ClearImpl()13 void TestRootCerts::ClearImpl() {}
14 
15 TestRootCerts::~TestRootCerts() = default;
16 
Init()17 void TestRootCerts::Init() {}
18 
19 }  // namespace net
20