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

Unified Diff: remoting/host/mouse_clamping_filter.h

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/me2me_desktop_environment.h ('k') | remoting/host/native_messaging/native_messaging_pipe.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/mouse_clamping_filter.h
diff --git a/remoting/host/mouse_clamping_filter.h b/remoting/host/mouse_clamping_filter.h
index ebe6cf93c622755d986ced3b0b093912102bc539..994abbe28a4776b122921b27a0e648a6cf90c36b 100644
--- a/remoting/host/mouse_clamping_filter.h
+++ b/remoting/host/mouse_clamping_filter.h
@@ -17,7 +17,7 @@ namespace remoting {
class MouseClampingFilter : public protocol::VideoStub {
public:
explicit MouseClampingFilter(protocol::InputStub* input_stub);
- virtual ~MouseClampingFilter();
+ ~MouseClampingFilter() override;
protocol::InputStub* input_filter() { return &input_filter_; }
@@ -26,8 +26,8 @@ class MouseClampingFilter : public protocol::VideoStub {
}
// protocol::VideoStub implementation.
- virtual void ProcessVideoPacket(scoped_ptr<VideoPacket> video_packet,
- const base::Closure& done) override;
+ void ProcessVideoPacket(scoped_ptr<VideoPacket> video_packet,
+ const base::Closure& done) override;
private:
// Clamps mouse event coordinates to the video dimensions.
« no previous file with comments | « remoting/host/me2me_desktop_environment.h ('k') | remoting/host/native_messaging/native_messaging_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698