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

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

Issue 2465363004: [Sensors] Consider maximum supported frequency (Closed)
Patch Set: Comments from Alex 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/AmbientLightSensor.cpp
diff --git a/third_party/WebKit/Source/modules/sensor/AmbientLightSensor.cpp b/third_party/WebKit/Source/modules/sensor/AmbientLightSensor.cpp
index d124044da0da34ae8f0c2c8eaf7bbddf38d6fb9a..a49572d587e04cdf76e38d066d14d707685a547f 100644
--- a/third_party/WebKit/Source/modules/sensor/AmbientLightSensor.cpp
+++ b/third_party/WebKit/Source/modules/sensor/AmbientLightSensor.cpp
@@ -38,15 +38,6 @@ SensorReading* AmbientLightSensor::createSensorReading(SensorProxy* proxy) {
return AmbientLightSensorReading::create(proxy);
}
-auto AmbientLightSensor::createSensorConfig(
- const SensorOptions& options,
- const SensorConfiguration& defaultConfig) -> SensorConfigurationPtr {
- auto result = device::mojom::blink::SensorConfiguration::New();
- result->frequency =
- options.hasFrequency() ? options.frequency() : defaultConfig.frequency;
- return result;
-}
-
DEFINE_TRACE(AmbientLightSensor) {
Sensor::trace(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698