Put pseudotcp back because remoting uses it.

R=andrew@webrtc.org, niklas.enbom@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/36409004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7887 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pthatcher@webrtc.org
2014-12-13 01:56:39 +00:00
parent dee76f3b89
commit e9db7fe80c
8 changed files with 8 additions and 8 deletions

View File

@ -37,8 +37,6 @@
'session/sessionclient.h',
'session/sessionmanagertask.h',
'session/sessionsendtask.h',
'tunnel/pseudotcp.cc',
'tunnel/pseudotcp.h',
'tunnel/pseudotcpchannel.cc',
'tunnel/pseudotcpchannel.h',
'tunnel/tunnelsessionclient.cc',
@ -80,7 +78,6 @@
'sources': [
'media/mediamessages_unittest.cc',
'media/mediasessionclient_unittest.cc',
'tunnel/pseudotcp_unittest.cc',
],
'conditions': [
['OS=="win"', {
@ -93,7 +90,7 @@
},
}],
],
}, # target jingle_unittest
}, # target jingle_p2p_unittest
{
'target_name': 'libjingle_xmpphelp',
'type': 'static_library',

View File

@ -28,7 +28,7 @@
#ifndef TALK_SESSION_TUNNEL_PSEUDOTCPCHANNEL_H_
#define TALK_SESSION_TUNNEL_PSEUDOTCPCHANNEL_H_
#include "webrtc/libjingle/tunnel/pseudotcp.h"
#include "webrtc/p2p/base/pseudotcp.h"
#include "webrtc/p2p/base/session.h"
#include "webrtc/base/criticalsection.h"
#include "webrtc/base/messagequeue.h"

View File

@ -31,7 +31,7 @@
#include <vector>
#include "webrtc/p2p/base/constants.h"
#include "webrtc/libjingle/tunnel/pseudotcp.h"
#include "webrtc/p2p/base/pseudotcp.h"
#include "webrtc/p2p/base/session.h"
#include "webrtc/libjingle/session/sessionclient.h"
#include "webrtc/p2p/base/sessiondescription.h"

View File

@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "webrtc/libjingle/tunnel/pseudotcp.h"
#include "webrtc/p2p/base/pseudotcp.h"
#include <stdio.h>
#include <stdlib.h>

View File

@ -10,7 +10,7 @@
#include <vector>
#include "webrtc/libjingle/tunnel/pseudotcp.h"
#include "webrtc/p2p/base/pseudotcp.h"
#include "webrtc/base/gunit.h"
#include "webrtc/base/helpers.h"
#include "webrtc/base/messagehandler.h"

View File

@ -48,6 +48,8 @@
'base/portinterface.h',
'base/portproxy.cc',
'base/portproxy.h',
'base/pseudotcp.cc',
'base/pseudotcp.h',
'base/rawtransport.cc',
'base/rawtransport.h',
'base/rawtransportchannel.cc',

View File

@ -19,6 +19,7 @@
'base/p2ptransportchannel_unittest.cc',
'base/port_unittest.cc',
'base/portallocatorsessionproxy_unittest.cc',
'base/pseudotcp_unittest.cc',
'base/relayport_unittest.cc',
'base/relayserver_unittest.cc',
'base/session_unittest.cc',