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

Unified Diff: ui/display/types/chromeos/touchscreen_device.h

Issue 394063004: Associate internal touchscreen to internal display (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove using external script is_touchscreen_internal Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698