Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(736)

Unified Diff: services/video_capture/video_capture_service.h

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: services/video_capture/video_capture_service.h
diff --git a/services/video_capture/video_capture_service.h b/services/video_capture/video_capture_service.h
index c5528dc8f7d2b6557c4a58a96e0991d85e8fda61..e427fba916218fc054eb8faa21d2170d5c14559b 100644
--- a/services/video_capture/video_capture_service.h
+++ b/services/video_capture/video_capture_service.h
@@ -14,7 +14,8 @@
namespace video_capture {
-class VideoCaptureDeviceFactoryImpl;
+class DeviceFactoryMediaToMojoAdapter;
+class MockDeviceFactory;
// Implementation of mojom::VideoCaptureService as a Service Manager service.
class VideoCaptureService
@@ -54,9 +55,10 @@ class VideoCaptureService
mojo::BindingSet<mojom::VideoCaptureDeviceFactory> factory_bindings_;
mojo::BindingSet<mojom::VideoCaptureDeviceFactory> fake_factory_bindings_;
mojo::BindingSet<mojom::VideoCaptureDeviceFactory> mock_factory_bindings_;
- std::unique_ptr<VideoCaptureDeviceFactoryImpl> device_factory_;
- std::unique_ptr<VideoCaptureDeviceFactoryImpl> fake_device_factory_;
- std::unique_ptr<VideoCaptureDeviceFactoryImpl> mock_device_factory_;
+ std::unique_ptr<DeviceFactoryMediaToMojoAdapter> device_factory_;
+ std::unique_ptr<DeviceFactoryMediaToMojoAdapter> fake_device_factory_;
+ std::unique_ptr<DeviceFactoryMediaToMojoAdapter> mock_device_factory_adapter_;
+ MockDeviceFactory* mock_device_factory_;
};
} // namespace video_capture
« no previous file with comments | « services/video_capture/video_capture_device_factory_impl.cc ('k') | services/video_capture/video_capture_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698