HomeSort by relevance Sort by last modified time
    Searched refs:touchList (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentCustom.cpp 53 #include "core/dom/TouchList.h"
109 RefPtr<TouchList> touchList = TouchList::create();
113 touchList->append(touch);
116 v8SetReturnValue(args, toV8(touchList.release(), args.Holder(), args.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
EventContext.cpp 36 #include "core/dom/TouchList.h"
102 , m_touches(TouchList::create())
103 , m_targetTouches(TouchList::create())
104 , m_changedTouches(TouchList::create())
133 void TouchEventContext::checkReachability(TouchList* touchList) const
135 for (size_t i = 0; i < touchList->length(); ++i)
136 ASSERT(touchList->item(i)->target()->toNode()->treeScope()->isInclusiveAncestorOf(m_node->treeScope()));
EventRetargeter.cpp 32 #include "core/dom/TouchList.h"
172 void EventRetargeter::adjustTouchList(const Node* node, const TouchList* touchList, const EventPath& eventPath, EventPathTouchLists& eventPathTouchLists)
174 if (!touchList)
178 for (size_t i = 0; i < touchList->length(); ++i) {
179 const Touch& touch = *touchList->item(i);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebInputEventConversionTest.cpp 46 #include "core/dom/TouchList.h"
267 RefPtr<TouchList> touchList = TouchList::create();
268 touchList->append(touch);
269 RefPtr<TouchEvent> touchEvent = TouchEvent::create(touchList.get(), touchList.get(), touchList.get(), WebCore::eventNames().touchmoveEvent, domWindow, 10, 10, 10, 10, false, false, false, false);

Completed in 768 milliseconds