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

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

Issue 12090109: Tab Capture: Backing store readbacks to YV12 VideoFrames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Style fix per wjia Created 7 years, 10 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_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 54f53c1bb759750ce23507fb8cfeaa82634a4174..e63ed7d8218ffe2fedb97118b2d63377ac7022c5 100644
--- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
@@ -46,8 +46,11 @@ class MockFrameObserver : public media::VideoCaptureDevice::EventHandler {
public:
virtual void OnError() OVERRIDE {}
void OnFrameInfo(const media::VideoCaptureCapability& info) {}
- virtual void OnIncomingCapturedFrame(const uint8* data, int length,
+ virtual void OnIncomingCapturedFrame(const uint8* data,
+ int length,
base::Time timestamp) OVERRIDE {}
+ virtual void OnIncomingCapturedVideoFrame(media::VideoFrame* frame,
+ base::Time timestamp) OVERRIDE {}
};
// Test class

Powered by Google App Engine
This is Rietveld 408576698