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

Side by Side Diff: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/gatt_aliases.py

Issue 2166913002: bluetooth: Generate random service uuid and generate random fake adapter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-fuzzer-basics
Patch Set: Address scheib's comments Created 4 years, 4 months 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 """Contains Services, Characteristics and Descriptor aliases.
6
7 These values are copied from:
8
9 https://developer.bluetooth.org/gatt/services/Pages/ServicesHome.aspx
10
11 https://developer.bluetooth.org/gatt/characteristics/Pages/CharacteristicsHome.a spx
12
13 https://developer.bluetooth.org/gatt/descriptors/Pages/DescriptorsHomePage.aspx
14 """
15
16
17 SERVICES = [
18 'alert_notification',
19 'automation_io',
20 'battery_service',
21 'blood_pressure',
22 'body_composition',
23 'bond_management',
24 'continuous_glucose_monitoring',
25 'current_time',
26 'cycling_power',
27 'cycling_speed_and_cadence',
28 'device_information',
29 'environmental_sensing',
30 'generic_access',
31 'generic_attribute',
32 'glucose',
33 'health_thermometer',
34 'heart_rate',
35 'http_proxy',
36 'human_interface_device',
37 'immediate_alert',
38 'indoor_positioning',
39 'internet_protocol_support',
40 'link_loss',
41 'location_and_navigation',
42 'next_dst_change',
43 'object_transfer',
44 'phone_alert_status',
45 'pulse_oximeter',
46 'reference_time_update',
47 'running_speed_and_cadence',
48 'scan_parameters',
49 'transport_discovery',
50 'tx_power',
51 'user_data',
52 'weight_scale',
53 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698