Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(350)

Unified Diff: content/shell/test_runner/test_runner.cc

Issue 2885203004: Refactor content/renderer/device_sensors to use device/generic_sensor instead of device/sensors (Closed)
Patch Set: updated content/renderer/BUILD.gn Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/shell/test_runner/test_runner.cc
diff --git a/content/shell/test_runner/test_runner.cc b/content/shell/test_runner/test_runner.cc
index c21435d517627f0a910fdd62dfbdc283a1e744f4..e4340bfbcf3e6b06abf39e0704b9fb1af2fb51ab 100644
--- a/content/shell/test_runner/test_runner.cc
+++ b/content/shell/test_runner/test_runner.cc
@@ -32,8 +32,6 @@
#include "content/shell/test_runner/test_runner_for_specific_view.h"
#include "content/shell/test_runner/web_test_delegate.h"
#include "content/shell/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"
@@ -44,6 +42,8 @@
#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"
@@ -2218,7 +2218,7 @@ void TestRunner::SetMockDeviceMotion(bool has_acceleration_x,
bool has_rotation_rate_gamma,
double rotation_rate_gamma,
double interval) {
- device::MotionData motion;
+ blink::WebDeviceMotionData motion;
// acceleration
motion.has_acceleration_x = has_acceleration_x;
@@ -2260,7 +2260,7 @@ void TestRunner::SetMockDeviceOrientation(bool has_alpha,
bool has_gamma,
double gamma,
bool absolute) {
- device::OrientationData orientation;
+ blink::WebDeviceOrientationData orientation;
// alpha
orientation.has_alpha = has_alpha;

Powered by Google App Engine
This is Rietveld 408576698