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

Unified Diff: chromecast/media/cma/test/frame_segmenter_for_test.cc

Issue 837453003: Chromecast: virtual/override cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a few spots Created 5 years, 11 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
« no previous file with comments | « chromecast/media/cma/pipeline/decrypt_util.cc ('k') | chromecast/media/cma/test/mock_frame_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/cma/test/frame_segmenter_for_test.cc
diff --git a/chromecast/media/cma/test/frame_segmenter_for_test.cc b/chromecast/media/cma/test/frame_segmenter_for_test.cc
index 76d22ea5e031011d44887667b932e95f18a666e4..e4cb3695c037ea28bf6679d2b8d786660c5081ee 100644
--- a/chromecast/media/cma/test/frame_segmenter_for_test.cc
+++ b/chromecast/media/cma/test/frame_segmenter_for_test.cc
@@ -282,16 +282,16 @@ void OnNewBuffer(BufferList* buffer_list,
class FakeDemuxerHost : public ::media::DemuxerHost {
public:
// DemuxerHost implementation.
- virtual void AddBufferedTimeRange(base::TimeDelta start,
- base::TimeDelta end) override {}
- virtual void SetDuration(base::TimeDelta duration) override {}
- virtual void OnDemuxerError(::media::PipelineStatus error) override {
+ void AddBufferedTimeRange(base::TimeDelta start,
+ base::TimeDelta end) override {}
+ void SetDuration(base::TimeDelta duration) override {}
+ void OnDemuxerError(::media::PipelineStatus error) override {
LOG(FATAL) << "OnDemuxerError: " << error;
}
- virtual void AddTextStream(::media::DemuxerStream* text_stream,
- const ::media::TextTrackConfig& config) override {
+ void AddTextStream(::media::DemuxerStream* text_stream,
+ const ::media::TextTrackConfig& config) override {
}
- virtual void RemoveTextStream(::media::DemuxerStream* text_stream) override {
+ void RemoveTextStream(::media::DemuxerStream* text_stream) override {
}
};
« no previous file with comments | « chromecast/media/cma/pipeline/decrypt_util.cc ('k') | chromecast/media/cma/test/mock_frame_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698