chromium/services/network/trust_tokens/operation_timing_request_helper_wrapper.h

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

#ifndef SERVICES_NETWORK_TRUST_TOKENS_OPERATION_TIMING_REQUEST_HELPER_WRAPPER_H_
#define SERVICES_NETWORK_TRUST_TOKENS_OPERATION_TIMING_REQUEST_HELPER_WRAPPER_H_

#include <utility>

#include "base/memory/weak_ptr.h"
#include "services/network/trust_tokens/trust_token_operation_metrics_recorder.h"
#include "services/network/trust_tokens/trust_token_request_helper.h"
#include "services/network/trust_tokens/trust_token_request_issuance_helper.h"

namespace network {

// OperationTimingRequestHelperWrapper passes a Trust Tokens operation through
// to a TrustTokenRequestHelper responsible for executing the operation and
// records metrics timing the operation.
class OperationTimingRequestHelperWrapper : public TrustTokenRequestHelper {};

}  // namespace network

#endif  // SERVICES_NETWORK_TRUST_TOKENS_OPERATION_TIMING_REQUEST_HELPER_WRAPPER_H_