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

Side by Side Diff: remoting/protocol/mouse_input_filter.h

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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_ 5 #ifndef REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_
6 #define REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_ 6 #define REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "remoting/protocol/input_filter.h" 9 #include "remoting/protocol/input_filter.h"
10 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" 10 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
(...skipping 10 matching lines...) Expand all
21 explicit MouseInputFilter(InputStub* input_stub); 21 explicit MouseInputFilter(InputStub* input_stub);
22 virtual ~MouseInputFilter(); 22 virtual ~MouseInputFilter();
23 23
24 // Specify the input dimensions for mouse events. 24 // Specify the input dimensions for mouse events.
25 void set_input_size(const webrtc::DesktopSize& size); 25 void set_input_size(const webrtc::DesktopSize& size);
26 26
27 // Specify the output dimensions. 27 // Specify the output dimensions.
28 void set_output_size(const webrtc::DesktopSize& size); 28 void set_output_size(const webrtc::DesktopSize& size);
29 29
30 // InputStub overrides. 30 // InputStub overrides.
31 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE; 31 virtual void InjectMouseEvent(const protocol::MouseEvent& event) override;
32 32
33 private: 33 private:
34 webrtc::DesktopSize input_max_; 34 webrtc::DesktopSize input_max_;
35 webrtc::DesktopSize output_max_; 35 webrtc::DesktopSize output_max_;
36 36
37 DISALLOW_COPY_AND_ASSIGN(MouseInputFilter); 37 DISALLOW_COPY_AND_ASSIGN(MouseInputFilter);
38 }; 38 };
39 39
40 } // namespace protocol 40 } // namespace protocol
41 } // namespace remoting 41 } // namespace remoting
42 42
43 #endif // REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_ 43 #endif // REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/monitored_video_stub_unittest.cc ('k') | remoting/protocol/negotiating_authenticator_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698