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

Unified Diff: media/filters/video_frame_scheduler_proxy.cc

Issue 1083883003: Move BindToCurrentLoop from media/base/ to base/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix media/base/callback_holder.h compile Created 5 years, 8 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/filters/opus_audio_decoder.cc ('k') | media/filters/vpx_video_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/video_frame_scheduler_proxy.cc
diff --git a/media/filters/video_frame_scheduler_proxy.cc b/media/filters/video_frame_scheduler_proxy.cc
index 590412e6dca06bda89ce10a047adccb3f548305e..b357f4ee976c5a9f20e167036e4bb8b56f6e85fd 100644
--- a/media/filters/video_frame_scheduler_proxy.cc
+++ b/media/filters/video_frame_scheduler_proxy.cc
@@ -4,8 +4,8 @@
#include "media/filters/video_frame_scheduler_proxy.h"
+#include "base/bind_to_current_loop.h"
#include "base/single_thread_task_runner.h"
-#include "media/base/bind_to_current_loop.h"
#include "media/base/video_frame.h"
namespace media {
@@ -35,7 +35,7 @@ void VideoFrameSchedulerProxy::ScheduleVideoFrame(
base::Unretained(scheduler_.get()),
frame,
wall_ticks,
- BindToCurrentLoop(done_cb)));
+ base::BindToCurrentLoop(done_cb)));
}
void VideoFrameSchedulerProxy::Reset() {
« no previous file with comments | « media/filters/opus_audio_decoder.cc ('k') | media/filters/vpx_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698