tree: c0c7ddb415f6bc9ff07be6d819996d2546fdf6ff [path history] [tgz]
  1. absolute_orientation_sensor.cc
  2. absolute_orientation_sensor.h
  3. absolute_orientation_sensor.idl
  4. accelerometer.cc
  5. accelerometer.h
  6. accelerometer.idl
  7. ambient_light_sensor.cc
  8. ambient_light_sensor.h
  9. ambient_light_sensor.idl
  10. ambient_light_sensor_test.cc
  11. BUILD.gn
  12. DEPS
  13. gyroscope.cc
  14. gyroscope.h
  15. gyroscope.idl
  16. idls.gni
  17. linear_acceleration_sensor.cc
  18. linear_acceleration_sensor.h
  19. linear_acceleration_sensor.idl
  20. magnetometer.cc
  21. magnetometer.h
  22. magnetometer.idl
  23. orientation_sensor.cc
  24. orientation_sensor.h
  25. orientation_sensor.idl
  26. OWNERS
  27. README.md
  28. relative_orientation_sensor.cc
  29. relative_orientation_sensor.h
  30. relative_orientation_sensor.idl
  31. sensor.cc
  32. sensor.h
  33. sensor.idl
  34. sensor_error_event.cc
  35. sensor_error_event.h
  36. sensor_error_event.idl
  37. sensor_error_event_init.idl
  38. sensor_inspector_agent.cc
  39. sensor_inspector_agent.h
  40. sensor_options.idl
  41. sensor_provider_proxy.cc
  42. sensor_provider_proxy.h
  43. sensor_proxy.cc
  44. sensor_proxy.h
  45. sensor_proxy_impl.cc
  46. sensor_proxy_impl.h
  47. sensor_proxy_inspector_impl.cc
  48. sensor_proxy_inspector_impl.h
  49. sensor_reading_remapper.cc
  50. sensor_reading_remapper.h
  51. sensor_test_utils.cc
  52. sensor_test_utils.h
  53. spatial_sensor_options.idl
third_party/blink/renderer/modules/sensor/README.md

Generic Sensor

third_party/blink/renderer/modules/sensor implements the following concrete sensor interfaces based on the [Generic Sensor API] (https://w3c.github.io/sensors):

  1. [Ambient Light Sensor] (https://w3c.github.io/ambient-light)
  2. [Accelerometer] (https://w3c.github.io/accelerometer)
  3. [Gyroscope] (https://w3c.github.io/gyroscope)
  4. [Magnetometer] (https://w3c.github.io/magnetometer)
  5. [Absolute Orientation Sensor] (https://w3c.github.io/orientation-sensor)

The platform-specific parts of the implementation are located in services/device/generic_sensor.

Testing

Sensors web tests are located in web_tests/sensor.

Sensors browser tests are located in content/test/data/generic_sensor.

Design Documents

Please refer to the design documentation for more details.