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

Side by Side Diff: third_party/WebKit/Source/core/events/PointerEventFactory.h

Issue 1426643008: Cleaning up PointerIdManager and add id re-mapping (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix EXPECT_EQ compilation error on Android Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PointerEventFactory_h
6 #define PointerEventFactory_h
7
8 #include "core/CoreExport.h"
9 #include "core/events/PointerEvent.h"
10 #include "public/platform/WebPointerProperties.h"
11 #include "wtf/Allocator.h"
12 #include "wtf/HashMap.h"
13
14 namespace blink {
15
16 /**
17 Helper class for tracking the pointer ids for each type of PointerEvents.
18 Using id re-mapping at this layer, this class makes sure that regardless of th e
19 domain of the id (i.e. in touch or pen) the corresponding pointer event will h ave
20 a unique id amongst all pointer events as per pointer events' specification.
21 This class intended to behave the same as existing browsers as much as possibl e
22 for compatibility reasons. Particularly it behaves very similar to MS Edge to have
23 pointer event ids generated by mouse always equal 1 and those that are generat ed
24 by touch and pen will have increasing ids from 2.
25 */
26 class CORE_EXPORT PointerEventFactory {
27 DISALLOW_NEW();
28 public:
29
30 PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
31 const PlatformMouseEvent&, PassRefPtrWillBeRawPtr<Node> relatedTarget,
32 PassRefPtrWillBeRawPtr<AbstractView>);
33
34 PassRefPtrWillBeRawPtr<PointerEvent> create(const AtomicString& type,
35 const PlatformTouchPoint&, PlatformEvent::Modifiers,
36 const double width, const double height,
37 const double clientX, const double clientY);
38
39 PassRefPtrWillBeRawPtr<PointerEvent> createPointerCancel(const PlatformTouch Point&);
40
41 PointerEventFactory();
42 ~PointerEventFactory();
43
44 // Clear all the existing ids.
45 void clear();
46 /*
47 * When a pointerEvent with a particular id is removed that id is considered
48 * free even though there might have been other PointerEvents that were
49 * generated with the same id before.
50 */
51 void remove(const PassRefPtrWillBeRawPtr<PointerEvent>);
52
53 private:
54 typedef long MappedId;
55 typedef std::pair<int, int> IncomingId;
56
57 MappedId add(const IncomingId);
58 bool isPrimary(const MappedId) const;
59 void setIdAndType(PointerEventInit &, const WebPointerProperties &);
60
61 static const MappedId s_invalidId;
62 static const MappedId s_mouseId;
63
64 PointerEventFactory::MappedId m_currentId;
65 HashMap<IncomingId, MappedId, WTF::PairHash<int, int>, WTF::PairHashTraits<W TF::UnsignedWithZeroKeyHashTraits<int>, WTF::UnsignedWithZeroKeyHashTraits<int>> > m_idMapping;
66 HashMap<MappedId, IncomingId, WTF::IntHash<MappedId>, WTF::UnsignedWithZeroK eyHashTraits<MappedId>> m_idReverseMapping;
67 MappedId m_primaryId[static_cast<int>(WebPointerProperties::PointerType::Las tEntry) + 1];
68 MappedId m_idCount[static_cast<int>(WebPointerProperties::PointerType::LastE ntry) + 1];
69 };
70
71 } // namespace blink
72
73 #endif // PointerEventFactory_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/events/PointerEvent.cpp ('k') | third_party/WebKit/Source/core/events/PointerEventFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698