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

Unified Diff: services/video_capture/mock_device_video_capture_service_unittest.cc

Issue 2395163002: VideoCapture: migrate VideoCapture renderer-->host messages to mojo, part 2 (Closed)
Patch Set: rockot@s comments on renaming and return types Created 4 years, 2 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 | « services/video_capture/fake_device_unittest.cc ('k') | services/video_capture/mojo_media_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/video_capture/mock_device_video_capture_service_unittest.cc
diff --git a/services/video_capture/mock_device_video_capture_service_unittest.cc b/services/video_capture/mock_device_video_capture_service_unittest.cc
index fbb057e67ab0ee04d62de2fa75fb8ec867ed662a..03212627bfbce77219d31fd07c5f2234e423f7fb 100644
--- a/services/video_capture/mock_device_video_capture_service_unittest.cc
+++ b/services/video_capture/mock_device_video_capture_service_unittest.cc
@@ -21,8 +21,8 @@ TEST_F(MockDeviceVideoCaptureServiceTest,
.WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); }));
device_proxy_->Start(requested_format_,
- mojom::ResolutionChangePolicy::FIXED_RESOLUTION,
- mojom::PowerLineFrequency::DEFAULT,
+ media::RESOLUTION_POLICY_FIXED_RESOLUTION,
+ media::PowerLineFrequency::FREQUENCY_DEFAULT,
std::move(mock_client_proxy_));
device_proxy_.reset();
@@ -40,8 +40,8 @@ TEST_F(MockDeviceVideoCaptureServiceTest,
.WillOnce(InvokeWithoutArgs([&wait_loop]() { wait_loop.Quit(); }));
device_proxy_->Start(requested_format_,
- mojom::ResolutionChangePolicy::FIXED_RESOLUTION,
- mojom::PowerLineFrequency::DEFAULT,
+ media::RESOLUTION_POLICY_FIXED_RESOLUTION,
+ media::PowerLineFrequency::FREQUENCY_DEFAULT,
std::move(mock_client_proxy_));
mock_client_.reset();
« no previous file with comments | « services/video_capture/fake_device_unittest.cc ('k') | services/video_capture/mojo_media_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698