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

Unified Diff: remoting/codec/video_encoder_vpx.h

Issue 667123002: Standardize usage of virtual/override/final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/video_encoder_verbatim.h ('k') | remoting/host/basic_desktop_environment.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_vpx.h
diff --git a/remoting/codec/video_encoder_vpx.h b/remoting/codec/video_encoder_vpx.h
index db3ff988781d6af78d77278d51b66bb2fe2d5185..fe5bd33ed9032a71e0fd3bd55feea65c474b8b93 100644
--- a/remoting/codec/video_encoder_vpx.h
+++ b/remoting/codec/video_encoder_vpx.h
@@ -26,13 +26,12 @@ class VideoEncoderVpx : public VideoEncoder {
static scoped_ptr<VideoEncoderVpx> CreateForVP8();
static scoped_ptr<VideoEncoderVpx> CreateForVP9();
- virtual ~VideoEncoderVpx();
+ ~VideoEncoderVpx() override;
// VideoEncoder interface.
- virtual void SetLosslessEncode(bool want_lossless) override;
- virtual void SetLosslessColor(bool want_lossless) override;
- virtual scoped_ptr<VideoPacket> Encode(
- const webrtc::DesktopFrame& frame) override;
+ void SetLosslessEncode(bool want_lossless) override;
+ void SetLosslessColor(bool want_lossless) override;
+ scoped_ptr<VideoPacket> Encode(const webrtc::DesktopFrame& frame) override;
private:
explicit VideoEncoderVpx(bool use_vp9);
« no previous file with comments | « remoting/codec/video_encoder_verbatim.h ('k') | remoting/host/basic_desktop_environment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698