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

Unified Diff: media/cast/video_receiver/video_receiver.cc

Issue 24586003: Be able to build cast_unittest and related targets in Chrome tree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix warnings Created 7 years, 3 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: media/cast/video_receiver/video_receiver.cc
diff --git a/media/cast/video_receiver/video_receiver.cc b/media/cast/video_receiver/video_receiver.cc
index 4d0421cc6c0c75e5c7260b6b19911530af50cb3c..644dbb5b349297f284f914e816bc08cf90fa272e 100644
--- a/media/cast/video_receiver/video_receiver.cc
+++ b/media/cast/video_receiver/video_receiver.cc
@@ -29,7 +29,7 @@ class LocalRtpVideoData : public RtpData {
time_updated_(false),
incoming_rtp_timestamp_(0) {
}
- ~LocalRtpVideoData() {}
+ virtual ~LocalRtpVideoData() {}
virtual void OnReceivedPayloadData(const uint8* payload_data,
int payload_size,
@@ -77,7 +77,7 @@ class LocalRtpVideoFeedback : public RtpPayloadFeedback {
video_receiver_->CastFeedback(cast_message);
}
- virtual void RequestKeyFrame() OVERRIDE {
+ virtual void RequestKeyFrame() {
video_receiver_->RequestKeyFrame();
}

Powered by Google App Engine
This is Rietveld 408576698