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

Unified Diff: remoting/host/clipboard_mac.mm

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/client_session.h ('k') | remoting/host/config_file_watcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/clipboard_mac.mm
diff --git a/remoting/host/clipboard_mac.mm b/remoting/host/clipboard_mac.mm
index b4988a6c1eeac00f5c8c3fdb69387bededf791b9..48ce8525d6103a7622eb8299c2486d65a4de283a 100644
--- a/remoting/host/clipboard_mac.mm
+++ b/remoting/host/clipboard_mac.mm
@@ -28,14 +28,12 @@ namespace remoting {
class ClipboardMac : public Clipboard {
public:
ClipboardMac();
- virtual ~ClipboardMac();
+ ~ClipboardMac() override;
// Must be called on the UI thread.
- virtual void Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
- virtual void InjectClipboardEvent(
- const protocol::ClipboardEvent& event) override;
- virtual void Stop() override;
+ void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
+ void InjectClipboardEvent(const protocol::ClipboardEvent& event) override;
+ void Stop() override;
private:
void CheckClipboardForChanges();
« no previous file with comments | « remoting/host/client_session.h ('k') | remoting/host/config_file_watcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698