OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef REMOTING_HOST_MOUSE_MOVE_OBSERVER_H_ |
| 6 #define REMOTING_HOST_MOUSE_MOVE_OBSERVER_H_ |
| 7 |
| 8 struct SkIPoint; |
| 9 |
| 10 namespace remoting { |
| 11 |
| 12 // Interface used by LocalInputMonitor to notify about local mouse |
| 13 // movement. |
| 14 class MouseMoveObserver { |
| 15 public: |
| 16 virtual void OnLocalMouseMoved(const SkIPoint& new_pos) = 0; |
| 17 |
| 18 protected: |
| 19 virtual ~MouseMoveObserver() {} |
| 20 }; |
| 21 |
| 22 } // namespace remoting |
| 23 |
| 24 #endif // REMOTING_HOST_MOUSE_MOVE_OBSERVER_H_ |
OLD | NEW |