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

Unified Diff: remoting/host/video_frame_recorder.cc

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
Index: remoting/host/video_frame_recorder.cc
diff --git a/remoting/host/video_frame_recorder.cc b/remoting/host/video_frame_recorder.cc
index 1ec900cb7f9d06804276c75295718b0fc5168cb9..5abce9c2e78dc57f17fdc13b423e01398bf2a507 100644
--- a/remoting/host/video_frame_recorder.cc
+++ b/remoting/host/video_frame_recorder.cc
@@ -38,10 +38,9 @@ class VideoFrameRecorder::RecordingVideoEncoder : public VideoEncoder {
}
// remoting::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:
scoped_ptr<VideoEncoder> encoder_;
« no previous file with comments | « remoting/host/token_validator_factory_impl_unittest.cc ('k') | remoting/host/video_frame_recorder_host_extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698