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

Unified Diff: remoting/host/video_frame_recorder_host_extension.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
« no previous file with comments | « remoting/host/video_frame_recorder_host_extension.h ('k') | remoting/host/video_scheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/video_frame_recorder_host_extension.cc
diff --git a/remoting/host/video_frame_recorder_host_extension.cc b/remoting/host/video_frame_recorder_host_extension.cc
index e405cef926e9a6adcf02666c9f77f4dea58fab04..61bd74609d20c9a8d10ad32fc6962cfa54e378ca 100644
--- a/remoting/host/video_frame_recorder_host_extension.cc
+++ b/remoting/host/video_frame_recorder_host_extension.cc
@@ -28,15 +28,14 @@ const char kVideoRecorderType[] = "video-recorder";
class VideoFrameRecorderHostExtensionSession : public HostExtensionSession {
public:
explicit VideoFrameRecorderHostExtensionSession(int64_t max_content_bytes);
- virtual ~VideoFrameRecorderHostExtensionSession();
+ ~VideoFrameRecorderHostExtensionSession() override;
// remoting::HostExtensionSession interface.
- virtual void OnCreateVideoEncoder(scoped_ptr<VideoEncoder>* encoder) override;
- virtual bool ModifiesVideoPipeline() const override;
- virtual bool OnExtensionMessage(
- ClientSessionControl* client_session_control,
- protocol::ClientStub* client_stub,
- const protocol::ExtensionMessage& message) override;
+ void OnCreateVideoEncoder(scoped_ptr<VideoEncoder>* encoder) override;
+ bool ModifiesVideoPipeline() const override;
+ bool OnExtensionMessage(ClientSessionControl* client_session_control,
+ protocol::ClientStub* client_stub,
+ const protocol::ExtensionMessage& message) override;
private:
// Handlers for the different frame recorder extension message types.
« no previous file with comments | « remoting/host/video_frame_recorder_host_extension.h ('k') | remoting/host/video_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698