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

  /external/chromium_org/third_party/WebKit/public/web/
WebTouchAction.h 37 enum WebTouchAction {
43 inline WebTouchAction operator| (WebTouchAction a, WebTouchAction b) { return WebTouchAction(int(a) | int(b)); }
44 inline WebTouchAction& operator|= (WebTouchAction& a, WebTouchAction b) { return a = a | b; }
45 inline WebTouchAction operator& (WebTouchAction a, WebTouchAction b) { return WebTouchAction(int(a) & int(b));
    [all...]
WebWidgetClient.h 39 #include "public/web/WebTouchAction.h"
183 virtual void setTouchAction(WebTouchAction touchAction) { }
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TouchActionTest.cpp 55 #include "public/web/WebTouchAction.h"
74 virtual void setTouchAction(WebTouchAction touchAction)
92 WebTouchAction lastTouchAction()
99 WebTouchAction m_action;
  /external/chromium_org/content/renderer/
render_widget.h 30 #include "third_party/WebKit/public/web/WebTouchAction.h"
541 virtual void setTouchAction(blink::WebTouchAction touch_action);
render_widget.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 104 #include "public/web/WebTouchAction.h"
963 WebTouchAction webTouchAction = static_cast<WebTouchAction>(touchAction);
964 client->setTouchAction(webTouchAction);
    [all...]

Completed in 137 milliseconds