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

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: re-formatting 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..66b46193df7b7f2bcf4114041236cdd7110b3ce3 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;
+
+ // If this is an internal touchscreen.
Daniel Erat 2014/07/16 02:59:46 nit: "True if this is an internal touchscreen." or
Yufeng Shen (Slow to review) 2014/07/16 20:20:28 Done.
+ bool is_internal;
};
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698