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

Side by Side Diff: content/browser/bluetooth/web_bluetooth_service_impl.h

Issue 2506813003: Use new wrapper types for web_bluetooth.mojom (Closed)
Patch Set: merge master and resolve conflicts Created 4 years 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
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_ 5 #ifndef CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_
6 #define CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_ 6 #define CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 blink::mojom::WebBluetoothServiceClientAssociatedPtrInfo client) override; 101 blink::mojom::WebBluetoothServiceClientAssociatedPtrInfo client) override;
102 void RequestDevice(blink::mojom::WebBluetoothRequestDeviceOptionsPtr options, 102 void RequestDevice(blink::mojom::WebBluetoothRequestDeviceOptionsPtr options,
103 const RequestDeviceCallback& callback) override; 103 const RequestDeviceCallback& callback) override;
104 void RemoteServerConnect( 104 void RemoteServerConnect(
105 const WebBluetoothDeviceId& device_id, 105 const WebBluetoothDeviceId& device_id,
106 const RemoteServerConnectCallback& callback) override; 106 const RemoteServerConnectCallback& callback) override;
107 void RemoteServerDisconnect(const WebBluetoothDeviceId& device_id) override; 107 void RemoteServerDisconnect(const WebBluetoothDeviceId& device_id) override;
108 void RemoteServerGetPrimaryServices( 108 void RemoteServerGetPrimaryServices(
109 const WebBluetoothDeviceId& device_id, 109 const WebBluetoothDeviceId& device_id,
110 blink::mojom::WebBluetoothGATTQueryQuantity quantity, 110 blink::mojom::WebBluetoothGATTQueryQuantity quantity,
111 const base::Optional<device::BluetoothUUID>& service_uuid, 111 const base::Optional<device::BluetoothUUID>& services_uuid,
112 const RemoteServerGetPrimaryServicesCallback& callback) override; 112 const RemoteServerGetPrimaryServicesCallback& callback) override;
113 void RemoteServiceGetCharacteristics( 113 void RemoteServiceGetCharacteristics(
114 const mojo::String& service_instance_id, 114 const std::string& service_instance_id,
115 blink::mojom::WebBluetoothGATTQueryQuantity quantity, 115 blink::mojom::WebBluetoothGATTQueryQuantity quantity,
116 const base::Optional<device::BluetoothUUID>& characteristics_uuid, 116 const base::Optional<device::BluetoothUUID>& characteristics_uuid,
117 const RemoteServiceGetCharacteristicsCallback& callback) override; 117 const RemoteServiceGetCharacteristicsCallback& callback) override;
118 void RemoteCharacteristicReadValue( 118 void RemoteCharacteristicReadValue(
119 const mojo::String& characteristic_instance_id, 119 const std::string& characteristic_instance_id,
120 const RemoteCharacteristicReadValueCallback& callback) override; 120 const RemoteCharacteristicReadValueCallback& callback) override;
121 void RemoteCharacteristicWriteValue( 121 void RemoteCharacteristicWriteValue(
122 const mojo::String& characteristic_instance_id, 122 const std::string& characteristic_instance_id,
123 mojo::Array<uint8_t> value, 123 const std::vector<uint8_t>& value,
124 const RemoteCharacteristicWriteValueCallback& callback) override; 124 const RemoteCharacteristicWriteValueCallback& callback) override;
125 void RemoteCharacteristicStartNotifications( 125 void RemoteCharacteristicStartNotifications(
126 const mojo::String& characteristic_instance_id, 126 const std::string& characteristic_instance_id,
127 const RemoteCharacteristicStartNotificationsCallback& callback) override; 127 const RemoteCharacteristicStartNotificationsCallback& callback) override;
128 void RemoteCharacteristicStopNotifications( 128 void RemoteCharacteristicStopNotifications(
129 const mojo::String& characteristic_instance_id, 129 const std::string& characteristic_instance_id,
130 const RemoteCharacteristicStopNotificationsCallback& callback) override; 130 const RemoteCharacteristicStopNotificationsCallback& callback) override;
131 131
132 void RequestDeviceImpl( 132 void RequestDeviceImpl(
133 blink::mojom::WebBluetoothRequestDeviceOptionsPtr options, 133 blink::mojom::WebBluetoothRequestDeviceOptionsPtr options,
134 const RequestDeviceCallback& callback, 134 const RequestDeviceCallback& callback,
135 device::BluetoothAdapter* adapter); 135 device::BluetoothAdapter* adapter);
136 136
137 // Should only be run after the services have been discovered for 137 // Should only be run after the services have been discovered for
138 // |device_address|. 138 // |device_address|.
139 void RemoteServerGetPrimaryServicesImpl( 139 void RemoteServerGetPrimaryServicesImpl(
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 mojo::Binding<blink::mojom::WebBluetoothService> binding_; 253 mojo::Binding<blink::mojom::WebBluetoothService> binding_;
254 254
255 base::WeakPtrFactory<WebBluetoothServiceImpl> weak_ptr_factory_; 255 base::WeakPtrFactory<WebBluetoothServiceImpl> weak_ptr_factory_;
256 256
257 DISALLOW_COPY_AND_ASSIGN(WebBluetoothServiceImpl); 257 DISALLOW_COPY_AND_ASSIGN(WebBluetoothServiceImpl);
258 }; 258 };
259 259
260 } // namespace content 260 } // namespace content
261 261
262 #endif // CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_ 262 #endif // CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698