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

Unified Diff: media/cast/test/receiver.cc

Issue 100823015: Cast: move net->transport (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating transport callback Created 7 years 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/cast/rtp_receiver/rtp_receiver_defines.h ('k') | media/cast/test/sender.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/test/receiver.cc
diff --git a/media/cast/test/receiver.cc b/media/cast/test/receiver.cc
index ad49eb7c146607297a87c826db1000d966081464..0731c4f636a64cd2beee2e4a015833d7c2aa112f 100644
--- a/media/cast/test/receiver.cc
+++ b/media/cast/test/receiver.cc
@@ -21,8 +21,8 @@
#include "media/cast/cast_environment.h"
#include "media/cast/cast_receiver.h"
#include "media/cast/logging/logging_defines.h"
-#include "media/cast/net/transport/transport.h"
#include "media/cast/test/utility/input_helper.h"
+#include "media/cast/transport/transport/transport.h"
#if defined(OS_LINUX)
#include "media/cast/test/linux_output_window.h"
@@ -239,8 +239,9 @@ int main(int argc, char** argv) {
media::cast::VideoReceiverConfig video_config =
media::cast::GetVideoReceiverConfig();
- scoped_ptr<media::cast::Transport> transport(
- new media::cast::Transport(main_message_loop.message_loop_proxy()));
+ scoped_ptr<media::cast::transport::Transport> transport(
+ new media::cast::transport::Transport(
+ main_message_loop.message_loop_proxy()));
scoped_ptr<media::cast::CastReceiver> cast_receiver(
media::cast::CastReceiver::CreateCastReceiver(
cast_environment,
« no previous file with comments | « media/cast/rtp_receiver/rtp_receiver_defines.h ('k') | media/cast/test/sender.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698