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

Unified Diff: talk/app/webrtc/webrtcsession_unittest.cc

Issue 1237613003: Remove deprecated functions. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Use nullptr instead of NULL. Created 5 years, 5 months 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: talk/app/webrtc/webrtcsession_unittest.cc
diff --git a/talk/app/webrtc/webrtcsession_unittest.cc b/talk/app/webrtc/webrtcsession_unittest.cc
index f5931affdf85e6ac15d51781e78b8055461a259a..de10bc40a8b432ba79a248d4a55b112f29f0d2e0 100644
--- a/talk/app/webrtc/webrtcsession_unittest.cc
+++ b/talk/app/webrtc/webrtcsession_unittest.cc
@@ -1085,7 +1085,8 @@ class WebRtcSessionTest : public testing::Test {
std::string sdp;
offer->ToString(&sdp);
SessionDescriptionInterface* desc =
- webrtc::CreateSessionDescription(JsepSessionDescription::kAnswer, sdp);
+ webrtc::CreateSessionDescription(
+ JsepSessionDescription::kAnswer, sdp, nullptr);
ASSERT_TRUE(desc != NULL);
SetRemoteDescriptionWithoutError(desc);

Powered by Google App Engine
This is Rietveld 408576698