| OLD | NEW |
| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 PrimaryServicesRequestCallback; | 71 PrimaryServicesRequestCallback; |
| 72 | 72 |
| 73 // WebContentsObserver: | 73 // WebContentsObserver: |
| 74 // These functions should always check that the affected RenderFrameHost | 74 // These functions should always check that the affected RenderFrameHost |
| 75 // is this->render_frame_host_ and not some other frame in the same tab. | 75 // is this->render_frame_host_ and not some other frame in the same tab. |
| 76 void DidFinishNavigation(NavigationHandle* navigation_handle) override; | 76 void DidFinishNavigation(NavigationHandle* navigation_handle) override; |
| 77 | 77 |
| 78 // BluetoothAdapter::Observer: | 78 // BluetoothAdapter::Observer: |
| 79 void AdapterPoweredChanged(device::BluetoothAdapter* adapter, | 79 void AdapterPoweredChanged(device::BluetoothAdapter* adapter, |
| 80 bool powered) override; | 80 bool powered) override; |
| 81 void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter, |
| 82 bool discovering) override; |
| 81 void DeviceAdded(device::BluetoothAdapter* adapter, | 83 void DeviceAdded(device::BluetoothAdapter* adapter, |
| 82 device::BluetoothDevice* device) override; | 84 device::BluetoothDevice* device) override; |
| 83 void DeviceChanged(device::BluetoothAdapter* adapter, | 85 void DeviceChanged(device::BluetoothAdapter* adapter, |
| 84 device::BluetoothDevice* device) override; | 86 device::BluetoothDevice* device) override; |
| 85 void GattServicesDiscovered(device::BluetoothAdapter* adapter, | 87 void GattServicesDiscovered(device::BluetoothAdapter* adapter, |
| 86 device::BluetoothDevice* device) override; | 88 device::BluetoothDevice* device) override; |
| 87 void GattCharacteristicValueChanged( | 89 void GattCharacteristicValueChanged( |
| 88 device::BluetoothAdapter* adapter, | 90 device::BluetoothAdapter* adapter, |
| 89 device::BluetoothRemoteGattCharacteristic* characteristic, | 91 device::BluetoothRemoteGattCharacteristic* characteristic, |
| 90 const std::vector<uint8_t>& value) override; | 92 const std::vector<uint8_t>& value) override; |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 mojo::Binding<blink::mojom::WebBluetoothService> binding_; | 280 mojo::Binding<blink::mojom::WebBluetoothService> binding_; |
| 279 | 281 |
| 280 base::WeakPtrFactory<WebBluetoothServiceImpl> weak_ptr_factory_; | 282 base::WeakPtrFactory<WebBluetoothServiceImpl> weak_ptr_factory_; |
| 281 | 283 |
| 282 DISALLOW_COPY_AND_ASSIGN(WebBluetoothServiceImpl); | 284 DISALLOW_COPY_AND_ASSIGN(WebBluetoothServiceImpl); |
| 283 }; | 285 }; |
| 284 | 286 |
| 285 } // namespace content | 287 } // namespace content |
| 286 | 288 |
| 287 #endif // CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_ | 289 #endif // CONTENT_BROWSER_BLUETOOTH_WEB_BLUETOOTH_SERVICE_IMPL_H_ |
| OLD | NEW |