| Index: third_party/WebKit/Source/modules/bluetooth/README.md
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/README.md b/third_party/WebKit/Source/modules/bluetooth/README.md
|
| index e9292eda88a5f48e35cec18c8358fe191a34aafb..6b92e671ad8a124a44d9a91f4d4902e6e69ec22f 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/README.md
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/README.md
|
| @@ -1,29 +1,34 @@
|
| -Web Bluetooth
|
| -=============
|
| +# Web Bluetooth Blink Module
|
|
|
| -`Source/modules/bluetooth` implements [Web Bluetooth][WB].
|
| +`Source/modules/bluetooth` implements the renderer process details and bindings
|
| +for the [Web Bluetooth specification]. It uses the Web Bluetooth Service
|
| +[mojom] to communicate with the [Web Bluetooth Service].
|
|
|
| -[WB]: https://webbluetoothcg.github.io/web-bluetooth/
|
| +[Web Bluetooth specification]: https://webbluetoothcg.github.io/web-bluetooth/
|
| +[mojom]: ../../../public/platform/modules/bluetooth/web_bluetooth.mojom
|
| +[Web Bluetooth Service]: /content/browser/bluetooth/
|
| +
|
| +
|
| +## LE only Scanning
|
|
|
| -Scanning
|
| ---------------------------------------------------------------------------------
|
| There isn't much support for GATT over BR/EDR from neither platforms nor
|
| devices so performing a Dual scan will find devices that the API is not
|
| able to interact with. To avoid wasting power and confusing users with
|
| devices they are not able to interact with, navigator.bluetooth.requestDevice
|
| performs an LE-only Scan.
|
|
|
| -Testing
|
| ---------------------------------------------------------------------------------
|
| +
|
| +## Testing
|
|
|
| Bluetooth layout tests in `LayoutTests/bluetooth/` rely on
|
| fake Bluetooth implementation classes constructed in
|
| `content/shell/browser/layout_test/layout_test_bluetooth_adapter_provider`.
|
| These tests span JavaScript binding to the `device/bluetooth` API layer.
|
|
|
| +See also the [Web Bluetooth Fuzzer](testing/clusterfuzz/README.md).
|
| +
|
|
|
| -Design Documents
|
| ---------------------------------------------------------------------------------
|
| +## Design Documents
|
|
|
| See: [Class Diagram of Web Bluetooth through Bluetooth Android][Class]
|
|
|
|
|