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

Unified Diff: media/cast/audio_receiver/audio_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/audio_receiver/audio_receiver.cc
diff --git a/media/cast/audio_receiver/audio_receiver.cc b/media/cast/audio_receiver/audio_receiver.cc
index cf8a8b8b1daa08c41e387599382bb17ec052f962..58b9af70369106a7925ddc7f53786a0363bb9996 100644
--- a/media/cast/audio_receiver/audio_receiver.cc
+++ b/media/cast/audio_receiver/audio_receiver.cc
@@ -71,7 +71,7 @@ class LocalRtpAudioFeedback : public RtpPayloadFeedback {
audio_receiver_->CastFeedback(cast_message);
}
- virtual void RequestKeyFrame() OVERRIDE {
+ virtual void RequestKeyFrame() {
hubbe 2013/09/26 23:03:20 I guess I don't understand OVERRIDE, why is it not
Alpha Left Google 2013/09/27 00:45:13 Because base class doesn't have this method any mo
hubbe 2013/09/27 19:22:53 Then delete it? Or at least add a TODO
Alpha Left Google 2013/09/27 21:13:53 Already removed.
DCHECK(false) << "Invalid callback";
}

Powered by Google App Engine
This is Rietveld 408576698