// Copyright 2023 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_MEDIA_EFFECTS_TEST_FAKE_VIDEO_CAPTURE_SERVICE_H_ #define COMPONENTS_MEDIA_EFFECTS_TEST_FAKE_VIDEO_CAPTURE_SERVICE_H_ #include <string> #include "components/media_effects/test/fake_video_source_provider.h" #include "services/video_capture/public/mojom/video_capture_service.mojom.h" namespace media_effects { class FakeVideoCaptureService : public video_capture::mojom::VideoCaptureService { … }; class ScopedFakeVideoCaptureService : public FakeVideoCaptureService { … }; } // namespace media_effects #endif // COMPONENTS_MEDIA_EFFECTS_TEST_FAKE_VIDEO_CAPTURE_SERVICE_H_