| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api.h" | 5 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h" | 10 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_factory.h" |
| 11 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h" | 11 #include "chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h" |
| 12 #include "chrome/browser/extensions/api/bluetooth/bluetooth_event_router.h" | 12 #include "chrome/browser/extensions/api/bluetooth/bluetooth_event_router.h" |
| 13 #include "chrome/browser/extensions/event_names.h" | 13 #include "chrome/browser/extensions/event_names.h" |
| 14 #include "chrome/browser/extensions/extension_system.h" | |
| 15 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/common/extensions/api/bluetooth.h" | 15 #include "chrome/common/extensions/api/bluetooth.h" |
| 17 #include "chrome/common/extensions/permissions/bluetooth_permission.h" | 16 #include "chrome/common/extensions/permissions/bluetooth_permission.h" |
| 18 #include "content/public/browser/browser_thread.h" | 17 #include "content/public/browser/browser_thread.h" |
| 19 #include "device/bluetooth/bluetooth_adapter.h" | 18 #include "device/bluetooth/bluetooth_adapter.h" |
| 20 #include "device/bluetooth/bluetooth_device.h" | 19 #include "device/bluetooth/bluetooth_device.h" |
| 21 #include "device/bluetooth/bluetooth_out_of_band_pairing_data.h" | 20 #include "device/bluetooth/bluetooth_out_of_band_pairing_data.h" |
| 22 #include "device/bluetooth/bluetooth_profile.h" | 21 #include "device/bluetooth/bluetooth_profile.h" |
| 23 #include "device/bluetooth/bluetooth_service_record.h" | 22 #include "device/bluetooth/bluetooth_service_record.h" |
| 24 #include "device/bluetooth/bluetooth_socket.h" | 23 #include "device/bluetooth/bluetooth_socket.h" |
| 25 #include "device/bluetooth/bluetooth_utils.h" | 24 #include "device/bluetooth/bluetooth_utils.h" |
| 26 #include "extensions/browser/event_router.h" | 25 #include "extensions/browser/event_router.h" |
| 26 #include "extensions/browser/extension_system.h" |
| 27 #include "extensions/common/permissions/permissions_data.h" | 27 #include "extensions/common/permissions/permissions_data.h" |
| 28 #include "net/base/io_buffer.h" | 28 #include "net/base/io_buffer.h" |
| 29 | 29 |
| 30 using device::BluetoothAdapter; | 30 using device::BluetoothAdapter; |
| 31 using device::BluetoothDevice; | 31 using device::BluetoothDevice; |
| 32 using device::BluetoothProfile; | 32 using device::BluetoothProfile; |
| 33 using device::BluetoothServiceRecord; | 33 using device::BluetoothServiceRecord; |
| 34 using device::BluetoothSocket; | 34 using device::BluetoothSocket; |
| 35 | 35 |
| 36 namespace { | 36 namespace { |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 adapter->StopDiscovering( | 665 adapter->StopDiscovering( |
| 666 base::Bind(&BluetoothStopDiscoveryFunction::OnSuccessCallback, this), | 666 base::Bind(&BluetoothStopDiscoveryFunction::OnSuccessCallback, this), |
| 667 base::Bind(&BluetoothStopDiscoveryFunction::OnErrorCallback, this)); | 667 base::Bind(&BluetoothStopDiscoveryFunction::OnErrorCallback, this)); |
| 668 } | 668 } |
| 669 | 669 |
| 670 return true; | 670 return true; |
| 671 } | 671 } |
| 672 | 672 |
| 673 } // namespace api | 673 } // namespace api |
| 674 } // namespace extensions | 674 } // namespace extensions |
| OLD | NEW |