From e47e0c96009b8633294eebbb9eb0e84caf525c57 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 26 Apr 2017 10:55:54 -0700 Subject: Avoid unordered_set and maps for the time being. See discussion at https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/rdxOHKzQmRY Change-Id: I1803ae97c39b592001835814e2f6674b2c7cb3ea Reviewed-on: https://pdfium-review.googlesource.com/4531 Reviewed-by: dsinclair Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- xfa/fwl/cfwl_notedriver.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'xfa/fwl') diff --git a/xfa/fwl/cfwl_notedriver.h b/xfa/fwl/cfwl_notedriver.h index 2ea3f97cc0..b55e701c40 100644 --- a/xfa/fwl/cfwl_notedriver.h +++ b/xfa/fwl/cfwl_notedriver.h @@ -8,8 +8,8 @@ #define XFA_FWL_CFWL_NOTEDRIVER_H_ #include +#include #include -#include #include #include "xfa/fwl/cfwl_event.h" @@ -69,8 +69,7 @@ class CFWL_NoteDriver { std::vector m_Forms; std::deque> m_NoteQueue; std::vector m_NoteLoopQueue; - std::unordered_map> - m_eventTargets; + std::map> m_eventTargets; CFWL_Widget* m_pHover; CFWL_Widget* m_pFocus; CFWL_Widget* m_pGrab; -- cgit v1.2.3