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

Unified Diff: ui/aura/window_event_dispatcher.h

Issue 1048333005: ozone: Map TouchEvent::touch_id_ into expected range (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | ui/aura/window_event_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window_event_dispatcher.h
diff --git a/ui/aura/window_event_dispatcher.h b/ui/aura/window_event_dispatcher.h
index ce28d7a2081da7eff687f29e790ce5bc2adbbf13..3bce66dd2bd673fe72f47fc15d4c9690d7955975 100644
--- a/ui/aura/window_event_dispatcher.h
+++ b/ui/aura/window_event_dispatcher.h
@@ -5,6 +5,7 @@
#ifndef UI_AURA_WINDOW_EVENT_DISPATCHER_H_
#define UI_AURA_WINDOW_EVENT_DISPATCHER_H_
+#include <set>
#include <vector>
#include "base/basictypes.h"
@@ -239,7 +240,7 @@ class AURA_EXPORT WindowEventDispatcher : public ui::EventProcessor,
WindowTreeHost* host_;
// Touch ids that are currently down.
- uint32 touch_ids_down_;
+ std::set<int> touch_ids_down_;
spang 2015/04/13 17:19:54 std::bitset?
Window* mouse_pressed_handler_;
Window* mouse_moved_handler_;
« no previous file with comments | « no previous file | ui/aura/window_event_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698