| 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 * * Redistributions of source code must retain the above copyright | 7 * * 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 * * Redistributions in binary form must reproduce the above copyright | 9 * * 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 PassRefPtrWillBeRawPtr<DeviceMotionData> DeviceMotionData::create( | 70 PassRefPtrWillBeRawPtr<DeviceMotionData> DeviceMotionData::create( |
| 71 PassRefPtrWillBeRawPtr<Acceleration> acceleration, | 71 PassRefPtrWillBeRawPtr<Acceleration> acceleration, |
| 72 PassRefPtrWillBeRawPtr<Acceleration> accelerationIncludingGravity, | 72 PassRefPtrWillBeRawPtr<Acceleration> accelerationIncludingGravity, |
| 73 PassRefPtrWillBeRawPtr<RotationRate> rotationRate, | 73 PassRefPtrWillBeRawPtr<RotationRate> rotationRate, |
| 74 bool canProvideInterval, | 74 bool canProvideInterval, |
| 75 double interval) | 75 double interval) |
| 76 { | 76 { |
| 77 return adoptRefWillBeNoop(new DeviceMotionData(acceleration, accelerationInc
ludingGravity, rotationRate, canProvideInterval, interval)); | 77 return adoptRefWillBeNoop(new DeviceMotionData(acceleration, accelerationInc
ludingGravity, rotationRate, canProvideInterval, interval)); |
| 78 } | 78 } |
| 79 | 79 |
| 80 PassRefPtrWillBeRawPtr<DeviceMotionData> DeviceMotionData::create(const blink::W
ebDeviceMotionData& data) | 80 PassRefPtrWillBeRawPtr<DeviceMotionData> DeviceMotionData::create(const WebDevic
eMotionData& data) |
| 81 { | 81 { |
| 82 return DeviceMotionData::create( | 82 return DeviceMotionData::create( |
| 83 DeviceMotionData::Acceleration::create( | 83 DeviceMotionData::Acceleration::create( |
| 84 data.hasAccelerationX, data.accelerationX, | 84 data.hasAccelerationX, data.accelerationX, |
| 85 data.hasAccelerationY, data.accelerationY, | 85 data.hasAccelerationY, data.accelerationY, |
| 86 data.hasAccelerationZ, data.accelerationZ), | 86 data.hasAccelerationZ, data.accelerationZ), |
| 87 DeviceMotionData::Acceleration::create( | 87 DeviceMotionData::Acceleration::create( |
| 88 data.hasAccelerationIncludingGravityX, data.accelerationIncludingGra
vityX, | 88 data.hasAccelerationIncludingGravityX, data.accelerationIncludingGra
vityX, |
| 89 data.hasAccelerationIncludingGravityY, data.accelerationIncludingGra
vityY, | 89 data.hasAccelerationIncludingGravityY, data.accelerationIncludingGra
vityY, |
| 90 data.hasAccelerationIncludingGravityZ, data.accelerationIncludingGra
vityZ), | 90 data.hasAccelerationIncludingGravityZ, data.accelerationIncludingGra
vityZ), |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 bool DeviceMotionData::canProvideEventData() const | 125 bool DeviceMotionData::canProvideEventData() const |
| 126 { | 126 { |
| 127 const bool hasAcceleration = m_acceleration && (m_acceleration->canProvideX(
) || m_acceleration->canProvideY() || m_acceleration->canProvideZ()); | 127 const bool hasAcceleration = m_acceleration && (m_acceleration->canProvideX(
) || m_acceleration->canProvideY() || m_acceleration->canProvideZ()); |
| 128 const bool hasAccelerationIncludingGravity = m_accelerationIncludingGravity
&& (m_accelerationIncludingGravity->canProvideX() || m_accelerationIncludingGrav
ity->canProvideY() || m_accelerationIncludingGravity->canProvideZ()); | 128 const bool hasAccelerationIncludingGravity = m_accelerationIncludingGravity
&& (m_accelerationIncludingGravity->canProvideX() || m_accelerationIncludingGrav
ity->canProvideY() || m_accelerationIncludingGravity->canProvideZ()); |
| 129 const bool hasRotationRate = m_rotationRate && (m_rotationRate->canProvideAl
pha() || m_rotationRate->canProvideBeta() || m_rotationRate->canProvideGamma()); | 129 const bool hasRotationRate = m_rotationRate && (m_rotationRate->canProvideAl
pha() || m_rotationRate->canProvideBeta() || m_rotationRate->canProvideGamma()); |
| 130 | 130 |
| 131 return hasAcceleration || hasAccelerationIncludingGravity || hasRotationRate
; | 131 return hasAcceleration || hasAccelerationIncludingGravity || hasRotationRate
; |
| 132 } | 132 } |
| 133 | 133 |
| 134 } // namespace blink | 134 } // namespace blink |
| OLD | NEW |