Changeset 181519 in webkit
- Timestamp:
- Mar 15, 2015, 7:24:10 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dom/Document.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r181515 r181519 1 2015-03-15 Simon Fraser <simon.fraser@apple.com> 2 3 Fix the touch-event build. 4 5 * dom/Document.cpp: 6 (WebCore::Document::didAddTouchEventHandler): 7 (WebCore::Document::didRemoveTouchEventHandler): 8 1 9 2015-03-15 Simon Fraser <simon.fraser@apple.com> 2 10 -
trunk/Source/WebCore/dom/Document.cpp
r181514 r181519 6016 6016 m_touchEventTargets->add(&handler); 6017 6017 if (Document* parent = parentDocument()) { 6018 parent->didAddTouchEventHandler( this);6018 parent->didAddTouchEventHandler(*this); 6019 6019 return; 6020 6020 } … … 6033 6033 if (!m_touchEventTargets.get()) 6034 6034 return; 6035 ASSERT(m_touchEventTargets->contains( handler));6035 ASSERT(m_touchEventTargets->contains(&handler)); 6036 6036 m_touchEventTargets->remove(&handler); 6037 6037 if (Document* parent = parentDocument()) { 6038 parent->didRemoveTouchEventHandler( this);6038 parent->didRemoveTouchEventHandler(*this); 6039 6039 return; 6040 6040 }
Note:
See TracChangeset
for help on using the changeset viewer.