chromium/components/enterprise/client_certificates/core/context_delegate.h

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

#ifndef COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CONTEXT_DELEGATE_H_
#define COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CONTEXT_DELEGATE_H_

#include "base/memory/scoped_refptr.h"

namespace net {
class X509Certificate;
}  // namespace net

namespace client_certificates {

// Delegate used to execute logic within a specific scope (e.g. a whole Browser,
// a specific Profile).
class ContextDelegate {};

}  // namespace client_certificates

#endif  // COMPONENTS_ENTERPRISE_CLIENT_CERTIFICATES_CORE_CONTEXT_DELEGATE_H_