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

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

Issue 2735083002: [Mojo Video Capture] Add test coverage for accelerated jpeg decoding (Closed)
Patch Set: Remove example code that accidentally slipped in with Patch Set 4 Created 3 years, 9 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/browser/renderer_host/media/video_capture_controller_unittest.cc
diff --git a/content/browser/renderer_host/media/video_capture_controller_unittest.cc b/content/browser/renderer_host/media/video_capture_controller_unittest.cc
index eacde473aaba2d0af6af532539f5bf958e39d3ad..74254ae11bc43014732bf4c7651e8728eb9ac390 100644
--- a/content/browser/renderer_host/media/video_capture_controller_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_controller_unittest.cc
@@ -69,6 +69,7 @@ class MockVideoCaptureControllerEventHandler
MOCK_METHOD1(DoEnded, void(VideoCaptureControllerID));
MOCK_METHOD1(DoError, void(VideoCaptureControllerID));
MOCK_METHOD1(OnStarted, void(VideoCaptureControllerID));
+ MOCK_METHOD1(OnStartedUsingGpuDecode, void(VideoCaptureControllerID));
void OnError(VideoCaptureControllerID id) override { DoError(id); }
void OnBufferCreated(VideoCaptureControllerID id,

Powered by Google App Engine
This is Rietveld 408576698