| Index: webrtc/pc/peerconnectionfactory.cc
|
| diff --git a/webrtc/api/peerconnectionfactory.cc b/webrtc/pc/peerconnectionfactory.cc
|
| similarity index 97%
|
| rename from webrtc/api/peerconnectionfactory.cc
|
| rename to webrtc/pc/peerconnectionfactory.cc
|
| index 32f461e3bf68e752b34b9160aef3edbac2114022..99a1daaa2e2ed9400771f98e2765abb890cb5890 100644
|
| --- a/webrtc/api/peerconnectionfactory.cc
|
| +++ b/webrtc/pc/peerconnectionfactory.cc
|
| @@ -8,22 +8,16 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| -#include "webrtc/api/peerconnectionfactory.h"
|
| +#include "webrtc/pc/peerconnectionfactory.h"
|
|
|
| #include <utility>
|
|
|
| -#include "webrtc/api/audiotrack.h"
|
| -#include "webrtc/api/localaudiosource.h"
|
| #include "webrtc/api/mediaconstraintsinterface.h"
|
| -#include "webrtc/api/mediastream.h"
|
| #include "webrtc/api/mediastreamproxy.h"
|
| #include "webrtc/api/mediastreamtrackproxy.h"
|
| -#include "webrtc/api/peerconnection.h"
|
| #include "webrtc/api/peerconnectionfactoryproxy.h"
|
| #include "webrtc/api/peerconnectionproxy.h"
|
| -#include "webrtc/api/videocapturertracksource.h"
|
| #include "webrtc/api/videosourceproxy.h"
|
| -#include "webrtc/api/videotrack.h"
|
| #include "webrtc/base/bind.h"
|
| #include "webrtc/base/checks.h"
|
| #include "webrtc/media/engine/webrtcmediaengine.h"
|
| @@ -33,6 +27,12 @@
|
| #include "webrtc/modules/audio_device/include/audio_device.h"
|
| #include "webrtc/p2p/base/basicpacketsocketfactory.h"
|
| #include "webrtc/p2p/client/basicportallocator.h"
|
| +#include "webrtc/pc/audiotrack.h"
|
| +#include "webrtc/pc/localaudiosource.h"
|
| +#include "webrtc/pc/mediastream.h"
|
| +#include "webrtc/pc/peerconnection.h"
|
| +#include "webrtc/pc/videocapturertracksource.h"
|
| +#include "webrtc/pc/videotrack.h"
|
|
|
| namespace webrtc {
|
|
|
|
|