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

Unified Diff: remoting/client/plugin/media_source_video_renderer.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 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: remoting/client/plugin/media_source_video_renderer.cc
diff --git a/remoting/client/plugin/media_source_video_renderer.cc b/remoting/client/plugin/media_source_video_renderer.cc
index 78fd2196b42b48fc81787ad9839652a414cd7814..e6d21b8f7ca2d2a69cba9407b4ec03d355dcdc5a 100644
--- a/remoting/client/plugin/media_source_video_renderer.cc
+++ b/remoting/client/plugin/media_source_video_renderer.cc
@@ -28,12 +28,12 @@ class MediaSourceVideoRenderer::VideoWriter : public mkvmuxer::IMkvWriter {
int64_t last_frame_timestamp() { return timecode_ - kFrameIntervalNs; }
// IMkvWriter interface.
- virtual mkvmuxer::int32 Write(const void* buf, mkvmuxer::uint32 len) OVERRIDE;
- virtual mkvmuxer::int64 Position() const OVERRIDE;
- virtual mkvmuxer::int32 Position(mkvmuxer::int64 position) OVERRIDE;
- virtual bool Seekable() const OVERRIDE;
+ virtual mkvmuxer::int32 Write(const void* buf, mkvmuxer::uint32 len) override;
+ virtual mkvmuxer::int64 Position() const override;
+ virtual mkvmuxer::int32 Position(mkvmuxer::int64 position) override;
+ virtual bool Seekable() const override;
virtual void ElementStartNotify(mkvmuxer::uint64 element_id,
- mkvmuxer::int64 position) OVERRIDE;
+ mkvmuxer::int64 position) override;
scoped_ptr<DataBuffer> OnVideoFrame(const std::string& video_data,
bool keyframe);
« no previous file with comments | « remoting/client/plugin/media_source_video_renderer.h ('k') | remoting/client/plugin/normalizing_input_filter_cros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698