OLD | NEW |
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_HOST_MOUSE_CLAMPING_FILTER_H_ | 5 #ifndef REMOTING_HOST_MOUSE_CLAMPING_FILTER_H_ |
6 #define REMOTING_HOST_MOUSE_CLAMPING_FILTER_H_ | 6 #define REMOTING_HOST_MOUSE_CLAMPING_FILTER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "remoting/protocol/mouse_input_filter.h" | 9 #include "remoting/protocol/mouse_input_filter.h" |
| 10 #include "remoting/protocol/video_stub.h" |
10 | 11 |
11 namespace remoting { | 12 namespace remoting { |
12 | 13 |
13 class VideoFrameCapturer; | 14 // Filtering VideoStub implementation which configures a MouseInputFilter to |
14 | 15 // clamp mouse events to fall within the dimensions of the most-recently |
15 // Filtering InputStub implementation which clamps mouse each mouse event to | 16 // received video frame. |
16 // the current dimensions of a VideoFrameCapturer instance before passing | 17 class MouseClampingFilter : public protocol::VideoStub { |
17 // them on to the target |input_stub|. | |
18 class MouseClampingFilter : public protocol::MouseInputFilter { | |
19 public: | 18 public: |
20 MouseClampingFilter(VideoFrameCapturer* capturer, | 19 MouseClampingFilter(protocol::InputStub* input_stub, |
21 protocol::InputStub* input_stub); | 20 protocol::VideoStub* video_stub); |
22 virtual ~MouseClampingFilter(); | 21 virtual ~MouseClampingFilter(); |
23 | 22 |
24 // InputStub overrides. | 23 protocol::InputStub* input_filter() { return &input_filter_; } |
25 virtual void InjectMouseEvent(const protocol::MouseEvent& event) OVERRIDE; | 24 |
| 25 // protocol::VideoStub implementation. |
| 26 virtual void ProcessVideoPacket(scoped_ptr<VideoPacket> video_packet, |
| 27 const base::Closure& done) OVERRIDE; |
26 | 28 |
27 private: | 29 private: |
28 VideoFrameCapturer* capturer_; | 30 // Clamps mouse event coordinates to the video dimensions. |
| 31 protocol::MouseInputFilter input_filter_; |
| 32 |
| 33 protocol::VideoStub* video_stub_; |
29 | 34 |
30 DISALLOW_COPY_AND_ASSIGN(MouseClampingFilter); | 35 DISALLOW_COPY_AND_ASSIGN(MouseClampingFilter); |
31 }; | 36 }; |
32 | 37 |
33 } // namespace remoting | 38 } // namespace remoting |
34 | 39 |
35 #endif // REMOTING_HOST_MOUSE_CLAMPING_FILTER_H_ | 40 #endif // REMOTING_HOST_MOUSE_CLAMPING_FILTER_H_ |
OLD | NEW |