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

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

Issue 2506903003: [sensors] Gyroscope sensor bindings implementation (Closed)
Patch Set: Comments + rebase Created 4 years, 1 month 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/GyroscopeReading.cpp
diff --git a/third_party/WebKit/Source/modules/sensor/GyroscopeReading.cpp b/third_party/WebKit/Source/modules/sensor/GyroscopeReading.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c06a298e826c70ddf137d821906ac8e3517949d1
--- /dev/null
+++ b/third_party/WebKit/Source/modules/sensor/GyroscopeReading.cpp
@@ -0,0 +1,56 @@
+// Copyright 2016 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/GyroscopeReading.h"
+
+#include "modules/sensor/GyroscopeReadingInit.h"
+#include "wtf/CurrentTime.h"
+
+namespace blink {
+
+namespace {
+device::SensorReading ToReadingData(const GyroscopeReadingInit& init) {
+ device::SensorReading result;
+ result.timestamp = WTF::monotonicallyIncreasingTime();
+ if (init.hasX())
+ result.values[0] = init.x();
+ if (init.hasY())
+ result.values[1] = init.y();
+ if (init.hasZ())
+ result.values[2] = init.z();
+ return result;
+}
+} // namespace
+
+GyroscopeReading::GyroscopeReading(const GyroscopeReadingInit& init)
+ : SensorReading(ToReadingData(init)) {}
+
+GyroscopeReading::GyroscopeReading(const device::SensorReading& data)
+ : SensorReading(data) {}
+
+GyroscopeReading::~GyroscopeReading() = default;
+
+double GyroscopeReading::x() const {
+ return data().values[0];
+}
+
+double GyroscopeReading::y() const {
+ return data().values[1];
+}
+
+double GyroscopeReading::z() const {
+ return data().values[2];
+}
+
+bool GyroscopeReading::isReadingUpdated(
+ const device::SensorReading& previous) const {
+ return previous.values[0] != x() || previous.values[1] != y() ||
+ previous.values[2] != z();
+}
+
+DEFINE_TRACE(GyroscopeReading) {
+ SensorReading::trace(visitor);
+}
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698