OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 #include "remoting/client/ui/direct_input_strategy.h" | 5 #include "remoting/client/input/direct_input_strategy.h" |
| 6 |
6 #include "remoting/client/ui/desktop_viewport.h" | 7 #include "remoting/client/ui/desktop_viewport.h" |
7 | 8 |
8 namespace remoting { | 9 namespace remoting { |
9 | 10 |
10 namespace { | 11 namespace { |
11 | 12 |
12 const float kTapFeedbackRadius = 25.f; | 13 const float kTapFeedbackRadius = 25.f; |
13 const float kDragFeedbackRadius = 55.f; | 14 const float kDragFeedbackRadius = 55.f; |
14 | 15 |
15 } // namespace | 16 } // namespace |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 72 } |
72 NOTREACHED(); | 73 NOTREACHED(); |
73 return 0.f; | 74 return 0.f; |
74 } | 75 } |
75 | 76 |
76 bool DirectInputStrategy::IsCursorVisible() const { | 77 bool DirectInputStrategy::IsCursorVisible() const { |
77 return false; | 78 return false; |
78 } | 79 } |
79 | 80 |
80 } // namespace remoting | 81 } // namespace remoting |
OLD | NEW |