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

Unified Diff: ui/aura/window_tree_host.h

Issue 191223007: Move touch CTM from X into Chrome (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rework Created 6 years, 8 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/window_tree_host.h
diff --git a/ui/aura/window_tree_host.h b/ui/aura/window_tree_host.h
index 9d54944777f1dfb776868485abfc1dad1d8749cf..980a1b52adcc02fb33341174221967473d286085 100644
--- a/ui/aura/window_tree_host.h
+++ b/ui/aura/window_tree_host.h
@@ -116,6 +116,15 @@ class AURA_EXPORT WindowTreeHost {
gfx::NativeCursor last_cursor() const { return last_cursor_; }
+ void UpdateDisplayID(int64 id1, int64 id2) {
+ display_ids_.first = id1;
+ display_ids_.second = id2;
+ }
+
+ const std::pair<int64, int64>& display_ids() const {
+ return display_ids_;
+ }
+
// Returns the EventSource responsible for dispatching events to the window
// tree.
virtual ui::EventSource* GetEventSource() = 0;
@@ -198,6 +207,13 @@ class AURA_EXPORT WindowTreeHost {
scoped_ptr<ui::ViewProp> prop_;
+ // The display IDs associated with this root window.
+ // In single monitor or extended mode dual monitor case, the root window
+ // is associated with one display.
+ // In mirror mode dual monitors case, the root window is associated with
+ // both displays.
+ std::pair<int64, int64> display_ids_;
+
DISALLOW_COPY_AND_ASSIGN(WindowTreeHost);
};

Powered by Google App Engine
This is Rietveld 408576698