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

Unified Diff: remoting/host/fake_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/fake_host_extension.h ('k') | remoting/host/fake_host_status_monitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/fake_host_extension.cc
diff --git a/remoting/host/fake_host_extension.cc b/remoting/host/fake_host_extension.cc
index 2a8160abf5f7f18bc5a03fd4d07dd82c53e31c5b..34c31f928d83759c29e534101a91c104d8a96d0d 100644
--- a/remoting/host/fake_host_extension.cc
+++ b/remoting/host/fake_host_extension.cc
@@ -17,17 +17,16 @@ namespace remoting {
class FakeExtension::Session : public HostExtensionSession {
public:
Session(FakeExtension* extension, const std::string& message_type);
- virtual ~Session() {}
+ ~Session() override {}
// HostExtensionSession interface.
- virtual void OnCreateVideoCapturer(
+ void OnCreateVideoCapturer(
scoped_ptr<webrtc::DesktopCapturer>* encoder) override;
- 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:
FakeExtension* extension_;
« no previous file with comments | « remoting/host/fake_host_extension.h ('k') | remoting/host/fake_host_status_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698