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

Unified Diff: remoting/host/input_injector_mac.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_linux.cc ('k') | remoting/host/input_injector_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/input_injector_mac.cc
diff --git a/remoting/host/input_injector_mac.cc b/remoting/host/input_injector_mac.cc
index 963574fe9ba3765aa839b00f4d1801535e05ce94..683fa0bc323785484baf005cc45dd1a031a2579f 100644
--- a/remoting/host/input_injector_mac.cc
+++ b/remoting/host/input_injector_mac.cc
@@ -63,16 +63,16 @@ class InputInjectorMac : public InputInjector {
virtual ~InputInjectorMac();
// 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 InputInjectorMac::Core class.
« no previous file with comments | « remoting/host/input_injector_linux.cc ('k') | remoting/host/input_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698