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

Unified Diff: webrtc/pc/peerconnection.cc

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Rebase Created 4 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
Index: webrtc/pc/peerconnection.cc
diff --git a/webrtc/api/peerconnection.cc b/webrtc/pc/peerconnection.cc
similarity index 99%
rename from webrtc/api/peerconnection.cc
rename to webrtc/pc/peerconnection.cc
index ebce40ca5eb0cf37d03243663826ea911eda06c3..6339e4595970a4ebf56aeeb440bcb76cbe20489a 100644
--- a/webrtc/api/peerconnection.cc
+++ b/webrtc/pc/peerconnection.cc
@@ -8,28 +8,16 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#include "webrtc/api/peerconnection.h"
+#include "webrtc/pc/peerconnection.h"
#include <algorithm>
#include <cctype> // for isdigit
#include <utility>
#include <vector>
-#include "webrtc/api/audiotrack.h"
-#include "webrtc/api/dtmfsender.h"
-#include "webrtc/api/jsepicecandidate.h"
-#include "webrtc/api/jsepsessiondescription.h"
#include "webrtc/api/mediaconstraintsinterface.h"
-#include "webrtc/api/mediastream.h"
-#include "webrtc/api/mediastreamobserver.h"
#include "webrtc/api/mediastreamproxy.h"
#include "webrtc/api/mediastreamtrackproxy.h"
-#include "webrtc/api/remoteaudiosource.h"
-#include "webrtc/api/rtpreceiver.h"
-#include "webrtc/api/rtpsender.h"
-#include "webrtc/api/streamcollection.h"
-#include "webrtc/api/videocapturertracksource.h"
-#include "webrtc/api/videotrack.h"
#include "webrtc/base/arraysize.h"
#include "webrtc/base/bind.h"
#include "webrtc/base/logging.h"
@@ -39,7 +27,19 @@
#include "webrtc/call/call.h"
#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
#include "webrtc/media/sctp/sctpdataengine.h"
+#include "webrtc/pc/audiotrack.h"
#include "webrtc/pc/channelmanager.h"
+#include "webrtc/pc/dtmfsender.h"
+#include "webrtc/pc/jsepicecandidate.h"
+#include "webrtc/pc/jsepsessiondescription.h"
+#include "webrtc/pc/mediastream.h"
+#include "webrtc/pc/mediastreamobserver.h"
+#include "webrtc/pc/remoteaudiosource.h"
+#include "webrtc/pc/rtpreceiver.h"
+#include "webrtc/pc/rtpsender.h"
+#include "webrtc/pc/streamcollection.h"
+#include "webrtc/pc/videocapturertracksource.h"
+#include "webrtc/pc/videotrack.h"
#include "webrtc/system_wrappers/include/clock.h"
#include "webrtc/system_wrappers/include/field_trial.h"

Powered by Google App Engine
This is Rietveld 408576698