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

/external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
H A DDeviceOrientationEvent.cpp27 #include "modules/device_orientation/DeviceOrientationEvent.h"
34 DeviceOrientationEvent::~DeviceOrientationEvent()
38 DeviceOrientationEvent::DeviceOrientationEvent() function in class:WebCore::DeviceOrientationEvent
44 DeviceOrientationEvent::DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData* orientation) function in class:WebCore::DeviceOrientationEvent
51 void DeviceOrientationEvent::initDeviceOrientationEvent(const AtomicString& type, bool bubbles, bool cancelable, DeviceOrientationData* orientation)
60 double DeviceOrientationEvent::alpha(bool& isNull) const
69 double DeviceOrientationEvent
[all...]
H A DDeviceOrientationEvent.h35 class DeviceOrientationEvent : public Event { class in namespace:WebCore
37 ~DeviceOrientationEvent();
38 static PassRefPtr<DeviceOrientationEvent> create()
40 return adoptRef(new DeviceOrientationEvent);
42 static PassRefPtr<DeviceOrientationEvent> create(const AtomicString& eventType, DeviceOrientationData* orientation)
44 return adoptRef(new DeviceOrientationEvent(eventType, orientation));
59 DeviceOrientationEvent();
60 DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData*);
65 inline DeviceOrientationEvent* toDeviceOrientationEvent(Event* event)
67 ASSERT_WITH_SECURITY_IMPLICATION(!event || event->interfaceName() == EventNames::DeviceOrientationEvent);
[all...]

Completed in 116 milliseconds