Upstream version 9.37.195.0
[platform/framework/web/crosswalk.git] / src / ui / display / types / chromeos / touchscreen_device.h
index ecc6452..3a471fa 100644 (file)
@@ -14,13 +14,16 @@ namespace ui {
 struct DISPLAY_TYPES_EXPORT TouchscreenDevice {
   static const int kInvalidId;
 
-  TouchscreenDevice(int id, const gfx::Size& size);
+  TouchscreenDevice(int id, const gfx::Size& size, bool is_internal);
 
   // ID of the touch screen. This ID must uniquely identify the touch screen.
   int id;
 
   // Size of the touch screen area.
   gfx::Size size;
+
+  // True if this is an internal touchscreen.
+  bool is_internal;
 };
 
 }  // namespace ui