Index: remoting/host/multi_touch_capability.h |
diff --git a/remoting/host/multi_touch_capability.h b/remoting/host/multi_touch_capability.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3d4fdc8cd77f203dcb2951f1ae7e795476202d81 |
--- /dev/null |
+++ b/remoting/host/multi_touch_capability.h |
@@ -0,0 +1,16 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef REMOTING_HOST_MULTI_TOUCH_CAPABILITY_H_ |
+#define REMOTING_HOST_MULTI_TOUCH_CAPABILITY_H_ |
+ |
+namespace remoting { |
+ |
+const char kMultiTouchCapability[] = "multiTouch"; |
+ |
+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
|
+ |
+} // namespace remoting |
+ |
+#endif // REMOTING_HOST_MULTI_TOUCH_CAPABILITY_H_ |