Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / libjingle / source / talk / app / webrtc / objctests / RTCPeerConnectionTest.mm
index 7a178f3..909503a 100644 (file)
@@ -39,8 +39,8 @@
 #import "RTCVideoRenderer.h"
 #import "RTCVideoTrack.h"
 
-#include "talk/base/gunit.h"
-#include "talk/base/ssladapter.h"
+#include "webrtc/base/gunit.h"
+#include "webrtc/base/ssladapter.h"
 
 #if !defined(__has_feature) || !__has_feature(objc_arc)
 #error "This file requires ARC support."
 // a TestBase since it's not.
 TEST(RTCPeerConnectionTest, SessionTest) {
   @autoreleasepool {
-    talk_base::InitializeSSL();
+    rtc::InitializeSSL();
     // Since |factory| will own the signaling & worker threads, it's important
     // that it outlive the created PeerConnections since they self-delete on the
     // signaling thread, and if |factory| is freed first then a last refcount on
@@ -312,6 +312,6 @@ TEST(RTCPeerConnectionTest, SessionTest) {
       RTCPeerConnectionTest* pcTest = [[RTCPeerConnectionTest alloc] init];
       [pcTest testCompleteSessionWithFactory:factory];
     }
-    talk_base::CleanupSSL();
+    rtc::CleanupSSL();
   }
 }