| Index: third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp
|
| diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp
|
| index 6bcd20b404dbd4a96b144b73d4ea334f85337ddd..547b9323fa49a43af2e530a92db884a4f2063ba8 100644
|
| --- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp
|
| +++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationData.cpp
|
| @@ -61,11 +61,11 @@ DeviceOrientationData* DeviceOrientationData::create(
|
| Nullable<double> alpha;
|
| Nullable<double> beta;
|
| Nullable<double> gamma;
|
| - if (data.hasAlpha)
|
| + if (data.has_alpha)
|
| alpha = data.alpha;
|
| - if (data.hasBeta)
|
| + if (data.has_beta)
|
| beta = data.beta;
|
| - if (data.hasGamma)
|
| + if (data.has_gamma)
|
| gamma = data.gamma;
|
| return DeviceOrientationData::create(alpha, beta, gamma, data.absolute);
|
| }
|
|
|