| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 } | 67 } |
| 67 NOTREACHED(); | 68 NOTREACHED(); |
| 68 return 0.f; | 69 return 0.f; |
| 69 } | 70 } |
| 70 | 71 |
| 71 bool DirectInputStrategy::IsCursorVisible() const { | 72 bool DirectInputStrategy::IsCursorVisible() const { |
| 72 return false; | 73 return false; |
| 73 } | 74 } |
| 74 | 75 |
| 75 } // namespace remoting | 76 } // namespace remoting |
| OLD | NEW |