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

Unified Diff: third_party/WebKit/Source/modules/sensor/SensorPollingStrategy.h

Issue 2051083002: WIP : Generic Sensor API implementation Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 years, 6 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/SensorPollingStrategy.h
diff --git a/third_party/WebKit/Source/modules/sensor/SensorPollingStrategy.h b/third_party/WebKit/Source/modules/sensor/SensorPollingStrategy.h
new file mode 100644
index 0000000000000000000000000000000000000000..6be6515d6dd4e65c3d346c00c903a099020b2e13
--- /dev/null
+++ b/third_party/WebKit/Source/modules/sensor/SensorPollingStrategy.h
@@ -0,0 +1,34 @@
+// 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.
+
+#ifndef SensorPollingStrategy_h
+#define SensorPollingStrategy_h
+
+#include "device/sensors/sensor_factory.mojom-blink.h"
+#include "platform/heap/Handle.h"
+#include "wtf/Functional.h"
+
+namespace blink {
+
+class SensorPollingStrategy : public GarbageCollectedFinalized<SensorPollingStrategy> {
+public:
+ static SensorPollingStrategy* create(double frequencySec, std::unique_ptr<Function<void()>>, device::sensors::blink::ReportingMode);
+
+ virtual void onSensorReadingChanged() {}
+ virtual void startPolling() = 0;
+ virtual void stopPolling() = 0;
+
+ virtual ~SensorPollingStrategy() {}
+
+ DEFINE_INLINE_VIRTUAL_TRACE() {}
+
+protected:
+ SensorPollingStrategy(double frequencySec, std::unique_ptr<Function<void()>>);
+ double m_frequency;
+ std::unique_ptr<Function<void()>> m_pollFunc;
+};
+
+} // namespace blink
+
+#endif // SensorPollingStrategy_h

Powered by Google App Engine
This is Rietveld 408576698