| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "modules/device_orientation/DeviceMotionEvent.h" | 27 #include "modules/device_orientation/DeviceMotionEvent.h" |
| 28 | 28 |
| 29 #include "modules/device_orientation/DeviceAcceleration.h" | 29 #include "modules/device_orientation/DeviceAcceleration.h" |
| 30 #include "modules/device_orientation/DeviceMotionData.h" | 30 #include "modules/device_orientation/DeviceMotionData.h" |
| 31 #include "modules/device_orientation/DeviceRotationRate.h" | 31 #include "modules/device_orientation/DeviceRotationRate.h" |
| 32 | 32 |
| 33 namespace WebCore { | 33 namespace blink { |
| 34 | 34 |
| 35 DeviceMotionEvent::~DeviceMotionEvent() | 35 DeviceMotionEvent::~DeviceMotionEvent() |
| 36 { | 36 { |
| 37 } | 37 } |
| 38 | 38 |
| 39 DeviceMotionEvent::DeviceMotionEvent() | 39 DeviceMotionEvent::DeviceMotionEvent() |
| 40 : m_deviceMotionData(DeviceMotionData::create()) | 40 : m_deviceMotionData(DeviceMotionData::create()) |
| 41 { | 41 { |
| 42 ScriptWrappable::init(this); | 42 ScriptWrappable::init(this); |
| 43 } | 43 } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 void DeviceMotionEvent::trace(Visitor* visitor) | 112 void DeviceMotionEvent::trace(Visitor* visitor) |
| 113 { | 113 { |
| 114 visitor->trace(m_deviceMotionData); | 114 visitor->trace(m_deviceMotionData); |
| 115 visitor->trace(m_acceleration); | 115 visitor->trace(m_acceleration); |
| 116 visitor->trace(m_accelerationIncludingGravity); | 116 visitor->trace(m_accelerationIncludingGravity); |
| 117 visitor->trace(m_rotationRate); | 117 visitor->trace(m_rotationRate); |
| 118 Event::trace(visitor); | 118 Event::trace(visitor); |
| 119 } | 119 } |
| 120 | 120 |
| 121 } // namespace WebCore | 121 } // namespace blink |
| OLD | NEW |