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

Unified Diff: media/tools/player_x11/player_x11.cc

Issue 16297002: Update media/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 7 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
« no previous file with comments | « media/tools/demuxer_bench/demuxer_bench.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/tools/player_x11/player_x11.cc
diff --git a/media/tools/player_x11/player_x11.cc b/media/tools/player_x11/player_x11.cc
index 711bf5c498beff3d1fe70e13a66536295bed3927..80357a2dfa1bf21aef30dc633ae71a0e0412d5fd 100644
--- a/media/tools/player_x11/player_x11.cc
+++ b/media/tools/player_x11/player_x11.cc
@@ -90,7 +90,7 @@ void Paint(base::MessageLoop* message_loop, const PaintCB& paint_cb,
return;
}
- paint_cb.Run(video_frame);
+ paint_cb.Run(video_frame.get());
}
static void OnBufferingState(media::Pipeline::BufferingState buffering_state) {}
« no previous file with comments | « media/tools/demuxer_bench/demuxer_bench.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698