Searched defs:DeviceMotionEvent (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceMotionEvent.cpp27 #include "modules/device_orientation/DeviceMotionEvent.h"
36 DeviceMotionEvent::~DeviceMotionEvent()
40 DeviceMotionEvent::DeviceMotionEvent() function in class:WebCore::DeviceMotionEvent
46 DeviceMotionEvent::DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData* deviceMotionData) function in class:WebCore::DeviceMotionEvent
53 void DeviceMotionEvent::initDeviceMotionEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceMotionData* deviceMotionData)
66 DeviceAcceleration* DeviceMotionEvent::acceleration()
77 DeviceAcceleration* DeviceMotionEvent
[all...]
H A DDeviceMotionEvent.h37 class DeviceMotionEvent : public Event { class in namespace:WebCore
39 ~DeviceMotionEvent();
40 static PassRefPtr<DeviceMotionEvent> create()
42 return adoptRef(new DeviceMotionEvent);
44 static PassRefPtr<DeviceMotionEvent> create(const AtomicString& eventType, DeviceMotionData* deviceMotionData)
46 return adoptRef(new DeviceMotionEvent(eventType, deviceMotionData));
61 DeviceMotionEvent();
62 DeviceMotionEvent(const AtomicString& eventType, DeviceMotionData*);
71 inline DeviceMotionEvent* toDeviceMotionEvent(Event* event)
73 ASSERT_WITH_SECURITY_IMPLICATION(!event || event->interfaceName() == EventNames::DeviceMotionEvent);
[all...]

Completed in 257 milliseconds