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

Unified Diff: device/generic_sensor/platform_sensor.h

Issue 2465363004: [Sensors] Consider maximum supported frequency (Closed)
Patch Set: Comment from Tim 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: device/generic_sensor/platform_sensor.h
diff --git a/device/generic_sensor/platform_sensor.h b/device/generic_sensor/platform_sensor.h
index 0a2948ffb48b63989dd92509b602b730ebf7735c..62320a5c48dba20754d5cd9080b64ef3df70706e 100644
--- a/device/generic_sensor/platform_sensor.h
+++ b/device/generic_sensor/platform_sensor.h
@@ -41,6 +41,13 @@ class DEVICE_GENERIC_SENSOR_EXPORT PlatformSensor
virtual mojom::ReportingMode GetReportingMode() = 0;
virtual PlatformSensorConfiguration GetDefaultConfiguration() = 0;
+ // Can be overriden to return the sensor maximum sampling frequency
+ // value obtained from the platform if it is available. If platfrom
+ // does not provide maximum sampling frequency this method must
+ // return default frequency.
+ // The default implementation returns default frequency.
+ virtual double GetMaximumSupportedFrequency();
+
mojom::SensorType GetType() const;
bool StartListening(Client* client,

Powered by Google App Engine
This is Rietveld 408576698