chromium/chrome/browser/enterprise/signals/client_certificate_fetcher.h

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

#ifndef CHROME_BROWSER_ENTERPRISE_SIGNALS_CLIENT_CERTIFICATE_FETCHER_H_
#define CHROME_BROWSER_ENTERPRISE_SIGNALS_CLIENT_CERTIFICATE_FETCHER_H_

#include <memory>

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "net/base/host_port_pair.h"
#include "net/cert/x509_certificate.h"
#include "net/ssl/client_cert_identity.h"
#include "url/gurl.h"

class Profile;

namespace content {
class BrowserContext;
}

namespace net {
class ClientCertStore;
class SSLCertRequestInfo;
}  // namespace net

namespace enterprise_signals {

// Class that wraps a ProfileNetworkContextService instance to allow easier
// mocking of that instance in unit tests.
class ProfileNetworkContextServiceWrapper {};

class ClientCertificateFetcher {};

}  // namespace enterprise_signals

#endif  // CHROME_BROWSER_ENTERPRISE_SIGNALS_CLIENT_CERTIFICATE_FETCHER_H_