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_; |