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

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

Issue 2903623002: Moving input related classes to the input folder. (Closed)
Patch Set: Working the build files to pull in the correct imports as needed. 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698