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

Unified Diff: remoting/host/single_window_input_injector_mac.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/single_window_desktop_environment.cc ('k') | remoting/host/token_validator_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/single_window_input_injector_mac.cc
diff --git a/remoting/host/single_window_input_injector_mac.cc b/remoting/host/single_window_input_injector_mac.cc
index fc24eac84cbd7a01f615413ef7a424291ed8f47e..ecc6f530306399083636f6ce198bc97ca6aae08d 100644
--- a/remoting/host/single_window_input_injector_mac.cc
+++ b/remoting/host/single_window_input_injector_mac.cc
@@ -24,15 +24,14 @@ class SingleWindowInputInjectorMac : public SingleWindowInputInjector {
SingleWindowInputInjectorMac(
webrtc::WindowId window_id,
scoped_ptr<InputInjector> input_injector);
- virtual ~SingleWindowInputInjectorMac();
+ ~SingleWindowInputInjectorMac() override;
// InputInjector interface.
- virtual void Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
- virtual void InjectKeyEvent(const KeyEvent& event) override;
- virtual void InjectTextEvent(const TextEvent& event) override;
- virtual void InjectMouseEvent(const MouseEvent& event) override;
- virtual void InjectClipboardEvent(const ClipboardEvent& event) override;
+ void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
+ void InjectKeyEvent(const KeyEvent& event) override;
+ void InjectTextEvent(const TextEvent& event) override;
+ void InjectMouseEvent(const MouseEvent& event) override;
+ void InjectClipboardEvent(const ClipboardEvent& event) override;
private:
CGRect FindCGRectOfWindow();
« no previous file with comments | « remoting/host/single_window_desktop_environment.cc ('k') | remoting/host/token_validator_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698