| 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 "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/extensions/extension_service.h" | 8 #include "chrome/browser/extensions/extension_service.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/common/extensions/api/experimental.bluetooth.h" | 10 #include "chrome/common/extensions/api/experimental_bluetooth.h" |
| 11 #include "content/public/browser/browser_thread.h" | 11 #include "content/public/browser/browser_thread.h" |
| 12 | 12 |
| 13 #if defined(OS_CHROMEOS) | 13 #if defined(OS_CHROMEOS) |
| 14 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
| 15 #include "chrome/browser/chromeos/bluetooth/bluetooth_adapter.h" | 15 #include "chrome/browser/chromeos/bluetooth/bluetooth_adapter.h" |
| 16 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" | 16 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" |
| 17 #include "chrome/browser/chromeos/extensions/bluetooth_event_router.h" | 17 #include "chrome/browser/chromeos/extensions/bluetooth_event_router.h" |
| 18 | 18 |
| 19 using chromeos::BluetoothAdapter; | 19 using chromeos::BluetoothAdapter; |
| 20 using chromeos::BluetoothDevice; | 20 using chromeos::BluetoothDevice; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 return false; | 193 return false; |
| 194 } | 194 } |
| 195 | 195 |
| 196 bool BluetoothConnectFunction::RunImpl() { | 196 bool BluetoothConnectFunction::RunImpl() { |
| 197 NOTREACHED() << "Not implemented yet"; | 197 NOTREACHED() << "Not implemented yet"; |
| 198 return false; | 198 return false; |
| 199 } | 199 } |
| 200 | 200 |
| 201 } // namespace api | 201 } // namespace api |
| 202 } // namespace extensions | 202 } // namespace extensions |
| OLD | NEW |