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

Unified Diff: content/browser/renderer_host/media/video_capture_manager_unittest.cc

Issue 2787703004: [Mojo Video Capture] Fix VideoCaptureManager exposing implementation details to clients (Closed)
Patch Set: Rebase to April 5 Created 3 years, 8 months 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
« no previous file with comments | « content/browser/renderer_host/media/video_capture_manager.h ('k') | media/capture/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/media/video_capture_manager_unittest.cc
diff --git a/content/browser/renderer_host/media/video_capture_manager_unittest.cc b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
index e4c9ff78e7e2849f8690548f53be732bd9eed458..86dccd33f733d9d454950b925f4b7d432b8861d7 100644
--- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
@@ -24,7 +24,7 @@
#include "content/common/media/media_stream_options.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "media/capture/video/fake_video_capture_device_factory.h"
-#include "media/capture/video/video_capture_system.h"
+#include "media/capture/video/video_capture_system_impl.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -200,7 +200,7 @@ class VideoCaptureManagerTest : public testing::Test {
auto video_capture_device_factory =
base::MakeUnique<WrappedDeviceFactory>();
video_capture_device_factory_ = video_capture_device_factory.get();
- auto video_capture_system = base::MakeUnique<media::VideoCaptureSystem>(
+ auto video_capture_system = base::MakeUnique<media::VideoCaptureSystemImpl>(
std::move(video_capture_device_factory));
vcm_ = new VideoCaptureManager(std::move(video_capture_system),
base::ThreadTaskRunnerHandle::Get());
« no previous file with comments | « content/browser/renderer_host/media/video_capture_manager.h ('k') | media/capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698