chromium/components/reporting/client/mock_dm_token_retriever.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 COMPONENTS_REPORTING_CLIENT_MOCK_DM_TOKEN_RETRIEVER_H_
#define COMPONENTS_REPORTING_CLIENT_MOCK_DM_TOKEN_RETRIEVER_H_

#include <cstddef>
#include <string>

#include "components/reporting/client/dm_token_retriever.h"
#include "components/reporting/util/statusor.h"
#include "testing/gmock/include/gmock/gmock.h"

namespace reporting {

// A mock |DMTokenRetriever| that stubs out functionality that retrieves the
// DM token for testing purposes.
class MockDMTokenRetriever : public DMTokenRetriever {};

}  // namespace reporting

#endif  // COMPONENTS_REPORTING_CLIENT_MOCK_DM_TOKEN_RETRIEVER_H_