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

Unified Diff: content/renderer/media/video_capture_impl_manager_unittest.cc

Issue 2824193002: Enable use_once_callback for //content/common/*.mojom (Closed)
Patch Set: rebase 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
Index: content/renderer/media/video_capture_impl_manager_unittest.cc
diff --git a/content/renderer/media/video_capture_impl_manager_unittest.cc b/content/renderer/media/video_capture_impl_manager_unittest.cc
index 1f339922136ca99a446a9c0231c5b969433edceb..5189c7f645e409f39b81e49a19223183399d04ef 100644
--- a/content/renderer/media/video_capture_impl_manager_unittest.cc
+++ b/content/renderer/media/video_capture_impl_manager_unittest.cc
@@ -82,12 +82,18 @@ class MockVideoCaptureImpl : public VideoCaptureImpl,
MOCK_METHOD1(RequestRefreshFrame, void(int32_t));
MOCK_METHOD3(ReleaseBuffer,
void(int32_t, int32_t, double));
- MOCK_METHOD3(GetDeviceSupportedFormats,
- void(int32_t,
- int32_t,
- const GetDeviceSupportedFormatsCallback&));
- MOCK_METHOD3(GetDeviceFormatsInUse,
- void(int32_t, int32_t, const GetDeviceFormatsInUseCallback&));
+
+ void GetDeviceSupportedFormats(int32_t,
+ int32_t,
+ GetDeviceSupportedFormatsCallback) override {
+ NOTREACHED();
+ }
+
+ void GetDeviceFormatsInUse(int32_t,
+ int32_t,
+ GetDeviceFormatsInUseCallback) override {
+ NOTREACHED();
+ }
PauseResumeCallback* const pause_callback_;
const base::Closure destruct_callback_;
« no previous file with comments | « content/renderer/media/user_media_client_impl_unittest.cc ('k') | content/renderer/media/video_capture_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698