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

Unified Diff: remoting/host/input_injector_win.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/input_injector_mac.cc ('k') | remoting/host/ipc_audio_capturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/input_injector_win.cc
diff --git a/remoting/host/input_injector_win.cc b/remoting/host/input_injector_win.cc
index 9a8b9f56f68d3ffe6473ee5bf57b323cf1e6f923..30c1cd769e0acb283c7fc4c01f739ad66c0e94a5 100644
--- a/remoting/host/input_injector_win.cc
+++ b/remoting/host/input_injector_win.cc
@@ -60,16 +60,16 @@ class InputInjectorWin : public InputInjector {
virtual ~InputInjectorWin();
// ClipboardStub interface.
- virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE;
+ virtual void InjectClipboardEvent(const ClipboardEvent& event) override;
// InputStub interface.
- virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE;
- virtual void InjectTextEvent(const TextEvent& event) OVERRIDE;
- virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE;
+ virtual void InjectKeyEvent(const KeyEvent& event) override;
+ virtual void InjectTextEvent(const TextEvent& event) override;
+ virtual void InjectMouseEvent(const MouseEvent& event) override;
// InputInjector interface.
virtual void Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE;
+ scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
private:
// The actual implementation resides in InputInjectorWin::Core class.
« no previous file with comments | « remoting/host/input_injector_mac.cc ('k') | remoting/host/ipc_audio_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698