diff options
Diffstat (limited to 'chromium/services/video_capture/testing_controls_impl.cc')
-rw-r--r-- | chromium/services/video_capture/testing_controls_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/services/video_capture/testing_controls_impl.cc b/chromium/services/video_capture/testing_controls_impl.cc index 3dc4e69af3a..e89eb86ec3a 100644 --- a/chromium/services/video_capture/testing_controls_impl.cc +++ b/chromium/services/video_capture/testing_controls_impl.cc @@ -4,11 +4,11 @@ #include "services/video_capture/testing_controls_impl.h" -#include "base/logging.h" - namespace video_capture { -TestingControlsImpl::TestingControlsImpl() = default; +TestingControlsImpl::TestingControlsImpl( + std::unique_ptr<service_manager::ServiceContextRef> service_ref) + : service_ref_(std::move(service_ref)) {} TestingControlsImpl::~TestingControlsImpl() = default; |