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

Unified Diff: webrtc/video/video_send_stream_tests.cc

Issue 2405173006: Remove deprected functions from EncodedImageCallback and RtpRtcp (Closed)
Patch Set: android,ios Created 4 years, 2 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: webrtc/video/video_send_stream_tests.cc
diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc
index d138893ba4cc293155b8daa7595c0f3eb715ef61..e5ddbb440621f6397fda07df48b627a7582fe8e4 100644
--- a/webrtc/video/video_send_stream_tests.cc
+++ b/webrtc/video/video_send_stream_tests.cc
@@ -2397,8 +2397,10 @@ TEST_F(VideoSendStreamTest, ReportsSentResolution) {
encoded._encodedWidth = kEncodedResolution[i].width;
encoded._encodedHeight = kEncodedResolution[i].height;
RTC_DCHECK(callback_);
- if (callback_->Encoded(encoded, &specifics, nullptr) != 0)
+ if (callback_->OnEncodedImage(encoded, &specifics, nullptr).error !=
+ EncodedImageCallback::Result::OK) {
return -1;
+ }
}
observation_complete_.Set();

Powered by Google App Engine
This is Rietveld 408576698