chromium/content/public/test/content_cert_verifier_browser_test.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_TEST_CONTENT_CERT_VERIFIER_BROWSER_TEST_H_
#define CONTENT_PUBLIC_TEST_CONTENT_CERT_VERIFIER_BROWSER_TEST_H_

#include "content/public/test/content_browser_test.h"
#include "content/public/test/content_mock_cert_verifier.h"

namespace content {

// CertVerifierBrowserTest allows tests to force certificate verification
// results for requests made with any profile's main request context (such as
// navigations). To do so, tests can use the MockCertVerifier exposed via
// CertVerifierBrowserTest::mock_cert_verifier().
class CertVerifierBrowserTest : public ContentBrowserTest {};

}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_CONTENT_CERT_VERIFIER_BROWSER_TEST_H_