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

Unified Diff: chrome/renderer/media/cast_receiver_session.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
Index: chrome/renderer/media/cast_receiver_session.cc
diff --git a/chrome/renderer/media/cast_receiver_session.cc b/chrome/renderer/media/cast_receiver_session.cc
index d1ba653c24a0ba793a8de76a20fc421ec9816522..7b2d65dee9831ef12f7ed5ee5521f06c8e5ad788 100644
--- a/chrome/renderer/media/cast_receiver_session.cc
+++ b/chrome/renderer/media/cast_receiver_session.cc
@@ -4,11 +4,11 @@
#include "chrome/renderer/media/cast_receiver_session.h"
+#include "base/bind_to_current_loop.h"
#include "base/synchronization/waitable_event.h"
#include "chrome/renderer/media/cast_receiver_audio_valve.h"
#include "content/public/renderer/render_thread.h"
#include "media/base/audio_capturer_source.h"
-#include "media/base/bind_to_current_loop.h"
#include "media/base/video_capturer_source.h"
#include "third_party/WebKit/public/platform/WebMediaStream.h"
#include "third_party/WebKit/public/platform/WebMediaStreamSource.h"
@@ -87,7 +87,7 @@ void CastReceiverSession::Start(
remote_endpoint,
base::Passed(&options),
format_,
- media::BindToCurrentLoop(error_callback)));
+ base::BindToCurrentLoop(error_callback)));
scoped_refptr<media::AudioCapturerSource> audio(
new CastReceiverSession::AudioCapturerSource(this));
scoped_ptr<media::VideoCapturerSource> video(
« no previous file with comments | « chrome/browser/sync_file_system/drive_backend/callback_helper.h ('k') | chrome/renderer/media/cast_rtp_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698