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)9bool TestRootCerts::AddImpl(X509Certificate* certificate) { 10 return true; 11 } 12 ClearImpl()13void TestRootCerts::ClearImpl() {} 14 15 TestRootCerts::~TestRootCerts() = default; 16 Init()17void TestRootCerts::Init() {} 18 19 } // namespace net 20