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

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: Patch for review. Created 7 years, 11 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..c1e10805a1ccf33f00163f13f9754a9767784950 100644
--- a/content/browser/renderer_host/media/video_capture_manager_unittest.cc
+++ b/content/browser/renderer_host/media/video_capture_manager_unittest.cc
@@ -47,7 +47,9 @@ class MockFrameObserver : public media::VideoCaptureDevice::EventHandler {
virtual void OnError() OVERRIDE {}
void OnFrameInfo(const media::VideoCaptureCapability& info) {}
virtual void OnIncomingCapturedFrame(const uint8* data, int length,
- base::Time timestamp) OVERRIDE {}
+ base::Time timestamp) OVERRIDE {}
wjia(left Chromium) 2013/02/04 23:48:40 For function declarations and definitions, put eac
ncarter (slow) 2013/02/05 17:36:08 Done.
+ virtual void OnIncomingCapturedVideoFrame(media::VideoFrame* frame,
+ base::Time timestamp) OVERRIDE {}
};
// Test class

Powered by Google App Engine
This is Rietveld 408576698