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

Unified Diff: media/cast/video_receiver/video_receiver_unittest.cc

Issue 82593005: Cast: Switching recevier to use media::VideoFrame (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adding media to DEPS + rebase Created 7 years, 1 month 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: media/cast/video_receiver/video_receiver_unittest.cc
diff --git a/media/cast/video_receiver/video_receiver_unittest.cc b/media/cast/video_receiver/video_receiver_unittest.cc
index b5dda54695af52051c7918c1e6693ce256a7fa80..7d70eaaa8b78dc54b4eefacb3e20b2c69ee6d955 100644
--- a/media/cast/video_receiver/video_receiver_unittest.cc
+++ b/media/cast/video_receiver/video_receiver_unittest.cc
@@ -30,8 +30,8 @@ class TestVideoReceiverCallback :
: num_called_(0) {}
// TODO(mikhal): Set and check expectations.
- void DecodeComplete(scoped_ptr<I420VideoFrame> video_frame,
- const base::TimeTicks& render_time) {
+ void DecodeComplete(const scoped_refptr<media::VideoFrame>& video_frame,
+ const base::TimeTicks& render_time) {
++num_called_;
}

Powered by Google App Engine
This is Rietveld 408576698