OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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_MULTI_TOUCH_CAPABILITY_H_ | |
6 #define REMOTING_HOST_MULTI_TOUCH_CAPABILITY_H_ | |
7 | |
8 namespace remoting { | |
9 | |
10 const char kMultiTouchCapability[] = "multiTouch"; | |
11 | |
12 bool MultiTouchCapable(); | |
Wez
2015/03/30 17:10:07
Do we need a whole header for this little constant
Rintaro Kuroiwa
2015/04/08 03:27:43
I couldn't think of a good place but static method
| |
13 | |
14 } // namespace remoting | |
15 | |
16 #endif // REMOTING_HOST_MULTI_TOUCH_CAPABILITY_H_ | |
OLD | NEW |