| Index: Source/modules/device_orientation/DeviceOrientationEvent.h
|
| diff --git a/Source/modules/device_orientation/DeviceOrientationEvent.h b/Source/modules/device_orientation/DeviceOrientationEvent.h
|
| index 52f251cafce21ed73a69eeb4c557459b00599ba9..243f5c220039e322c1fb41cfb94bc043028e0b2f 100644
|
| --- a/Source/modules/device_orientation/DeviceOrientationEvent.h
|
| +++ b/Source/modules/device_orientation/DeviceOrientationEvent.h
|
| @@ -56,11 +56,13 @@ public:
|
|
|
| virtual const AtomicString& interfaceName() const OVERRIDE;
|
|
|
| + virtual void trace(Visitor*) OVERRIDE;
|
| +
|
| private:
|
| DeviceOrientationEvent();
|
| DeviceOrientationEvent(const AtomicString& eventType, DeviceOrientationData*);
|
|
|
| - RefPtrWillBePersistent<DeviceOrientationData> m_orientation;
|
| + RefPtrWillBeMember<DeviceOrientationData> m_orientation;
|
| };
|
|
|
| DEFINE_TYPE_CASTS(DeviceOrientationEvent, Event, event, event->interfaceName() == EventNames::DeviceOrientationEvent, event.interfaceName() == EventNames::DeviceOrientationEvent);
|
|
|