| Index: components/test_runner/test_runner.cc
|
| diff --git a/components/test_runner/test_runner.cc b/components/test_runner/test_runner.cc
|
| index 86185b48a8917e53e83714249e615ee18fc4d34a..47b60196b7e54c6e48f9281aca57769f24c3f61c 100644
|
| --- a/components/test_runner/test_runner.cc
|
| +++ b/components/test_runner/test_runner.cc
|
| @@ -31,6 +31,8 @@
|
| #include "components/test_runner/test_runner_for_specific_view.h"
|
| #include "components/test_runner/web_test_delegate.h"
|
| #include "components/test_runner/web_view_test_proxy.h"
|
| +#include "device/sensors/public/cpp/motion_data.h"
|
| +#include "device/sensors/public/cpp/orientation_data.h"
|
| #include "gin/arguments.h"
|
| #include "gin/array_buffer.h"
|
| #include "gin/handle.h"
|
| @@ -41,8 +43,6 @@
|
| #include "third_party/WebKit/public/platform/WebPasswordCredential.h"
|
| #include "third_party/WebKit/public/platform/WebPoint.h"
|
| #include "third_party/WebKit/public/platform/WebURLResponse.h"
|
| -#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceMotionData.h"
|
| -#include "third_party/WebKit/public/platform/modules/device_orientation/WebDeviceOrientationData.h"
|
| #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWorkerRegistration.h"
|
| #include "third_party/WebKit/public/web/WebArrayBuffer.h"
|
| #include "third_party/WebKit/public/web/WebArrayBufferConverter.h"
|
| @@ -2171,7 +2171,7 @@ void TestRunner::SetMockDeviceMotion(
|
| bool has_rotation_rate_beta, double rotation_rate_beta,
|
| bool has_rotation_rate_gamma, double rotation_rate_gamma,
|
| double interval) {
|
| - WebDeviceMotionData motion;
|
| + device::MotionData motion;
|
|
|
| // acceleration
|
| motion.hasAccelerationX = has_acceleration_x;
|
| @@ -2210,7 +2210,7 @@ void TestRunner::SetMockDeviceOrientation(bool has_alpha, double alpha,
|
| bool has_beta, double beta,
|
| bool has_gamma, double gamma,
|
| bool absolute) {
|
| - WebDeviceOrientationData orientation;
|
| + device::OrientationData orientation;
|
|
|
| // alpha
|
| orientation.hasAlpha = has_alpha;
|
|
|