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

Unified Diff: ui/aura/root_window.h

Issue 12087124: Disable touch calibration on external touchscreen. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Win compilation take 2 + rebase Created 7 years, 11 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/aura/root_window.h
diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
index d5066921deee501d26f09b78dd0318b72e772c95..6e7a99d1081183d57cb7de730695bbae3dda7f39 100644
--- a/ui/aura/root_window.h
+++ b/ui/aura/root_window.h
@@ -63,10 +63,13 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
public:
struct AURA_EXPORT CreateParams {
// CreateParams with initial_bounds and default host.
- explicit CreateParams(const gfx::Rect& initial_bounds);
+ explicit CreateParams(const gfx::Rect& initial_bounds,
+ bool is_internal_display);
oshima 2013/02/04 19:20:05 internal display <-> root window mapping is dynami
ynovikov 2013/03/13 23:34:21 Done.
~CreateParams() {}
gfx::Rect initial_bounds;
+ // True if RootWindow corresponds to an internal display (on ChromeOS).
+ bool is_internal_display;
// A host to use in place of the default one that RootWindow will create.
// NULL by default.

Powered by Google App Engine
This is Rietveld 408576698