| Index: ui/display/types/chromeos/touchscreen_device.h
|
| diff --git a/ui/display/types/chromeos/touchscreen_device.h b/ui/display/types/chromeos/touchscreen_device.h
|
| index ecc64527183886300a2f99c7e93a9e5b929da6fb..3a471fa16d012d28a931154567baba234facebff 100644
|
| --- a/ui/display/types/chromeos/touchscreen_device.h
|
| +++ b/ui/display/types/chromeos/touchscreen_device.h
|
| @@ -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
|
|
|