// 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_SYNC_TEST_MOCK_DATA_TYPE_STORE_H_ #define COMPONENTS_SYNC_TEST_MOCK_DATA_TYPE_STORE_H_ #include <memory> #include "components/sync/model/data_type_store.h" #include "testing/gmock/include/gmock/gmock.h" namespace syncer { class MockDataTypeStore : public DataTypeStore { … }; } // namespace syncer #endif // COMPONENTS_SYNC_TEST_MOCK_DATA_TYPE_STORE_H_