tree: 34374682f5461f94b1df48706a8ccb8d6f54d8f0 [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. linear_acceleration_sensor.cc
  17. linear_acceleration_sensor.h
  18. linear_acceleration_sensor.idl
  19. magnetometer.cc
  20. magnetometer.h
  21. magnetometer.idl
  22. orientation_sensor.cc
  23. orientation_sensor.h
  24. orientation_sensor.idl
  25. OWNERS
  26. README.md
  27. relative_orientation_sensor.cc
  28. relative_orientation_sensor.h
  29. relative_orientation_sensor.idl
  30. sensor.cc
  31. sensor.h
  32. sensor.idl
  33. sensor_error_event.cc
  34. sensor_error_event.h
  35. sensor_error_event.idl
  36. sensor_error_event_init.idl
  37. sensor_inspector_agent.cc
  38. sensor_inspector_agent.h
  39. sensor_options.idl
  40. sensor_provider_proxy.cc
  41. sensor_provider_proxy.h
  42. sensor_proxy.cc
  43. sensor_proxy.h
  44. sensor_proxy_impl.cc
  45. sensor_proxy_impl.h
  46. sensor_proxy_inspector_impl.cc
  47. sensor_proxy_inspector_impl.h
  48. sensor_reading_remapper.cc
  49. sensor_reading_remapper.h
  50. sensor_test_utils.cc
  51. sensor_test_utils.h
  52. 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.