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

Unified Diff: third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.cpp

Issue 2908393002: [Sensors] Bindings for RelativeOrientationSensor (Closed)
Patch Set: updated webexposed tests results 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: third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.cpp
diff --git a/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.cpp b/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..22e97eab3f969dc1eae40b477265cee0adc93839
--- /dev/null
+++ b/third_party/WebKit/Source/modules/sensor/RelativeOrientationSensor.cpp
@@ -0,0 +1,39 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "modules/sensor/RelativeOrientationSensor.h"
+
+using device::mojom::blink::SensorType;
+
+namespace blink {
+
+RelativeOrientationSensor* RelativeOrientationSensor::Create(
+ ExecutionContext* execution_context,
+ const SensorOptions& options,
+ ExceptionState& exception_state) {
+ return new RelativeOrientationSensor(execution_context, options,
+ exception_state);
+}
+
+// static
+RelativeOrientationSensor* RelativeOrientationSensor::Create(
+ ExecutionContext* execution_context,
+ ExceptionState& exception_state) {
+ return Create(execution_context, SensorOptions(), exception_state);
+}
+
+RelativeOrientationSensor::RelativeOrientationSensor(
+ ExecutionContext* execution_context,
+ const SensorOptions& options,
+ ExceptionState& exception_state)
+ : OrientationSensor(execution_context,
+ options,
+ exception_state,
+ SensorType::RELATIVE_ORIENTATION) {}
+
+DEFINE_TRACE(RelativeOrientationSensor) {
+ OrientationSensor::Trace(visitor);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698