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

Unified Diff: remoting/codec/video_decoder_verbatim.h

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
« no previous file with comments | « remoting/codec/audio_encoder_verbatim.h ('k') | remoting/codec/video_decoder_vpx.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_decoder_verbatim.h
diff --git a/remoting/codec/video_decoder_verbatim.h b/remoting/codec/video_decoder_verbatim.h
index 24203d9f84f8c349f36ccf4f5afac641703bec68..a02b2708667407764466e6bb0a6f020b5e9f5606 100644
--- a/remoting/codec/video_decoder_verbatim.h
+++ b/remoting/codec/video_decoder_verbatim.h
@@ -23,16 +23,16 @@ class VideoDecoderVerbatim : public VideoDecoder {
VideoDecoderVerbatim();
// VideoDecoder implementation.
- virtual void Initialize(const webrtc::DesktopSize& screen_size) OVERRIDE;
- virtual bool DecodePacket(const VideoPacket& packet) OVERRIDE;
+ virtual void Initialize(const webrtc::DesktopSize& screen_size) override;
+ virtual bool DecodePacket(const VideoPacket& packet) override;
virtual void Invalidate(const webrtc::DesktopSize& view_size,
- const webrtc::DesktopRegion& region) OVERRIDE;
+ const webrtc::DesktopRegion& region) override;
virtual void RenderFrame(const webrtc::DesktopSize& view_size,
const webrtc::DesktopRect& clip_area,
uint8* image_buffer,
int image_stride,
- webrtc::DesktopRegion* output_region) OVERRIDE;
- virtual const webrtc::DesktopRegion* GetImageShape() OVERRIDE;
+ webrtc::DesktopRegion* output_region) override;
+ virtual const webrtc::DesktopRegion* GetImageShape() override;
private:
// The region updated that hasn't been copied to the screen yet.
« no previous file with comments | « remoting/codec/audio_encoder_verbatim.h ('k') | remoting/codec/video_decoder_vpx.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698