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

Side by Side Diff: remoting/client/input/direct_input_strategy.cc

Issue 2903623002: Moving input related classes to the input folder. (Closed)
Patch Set: Fix build. Created 3 years, 7 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 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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698