| 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 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/string16.h" | 12 #include "base/string16.h" |
| 13 #include "chrome/browser/chromeos/dbus/bluetooth_agent_service_provider.h" | 13 #include "chromeos/dbus/bluetooth_agent_service_provider.h" |
| 14 #include "chrome/browser/chromeos/dbus/bluetooth_device_client.h" | 14 #include "chromeos/dbus/bluetooth_device_client.h" |
| 15 #include "dbus/object_path.h" | 15 #include "dbus/object_path.h" |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 | 18 |
| 19 class BluetoothAdapter; | 19 class BluetoothAdapter; |
| 20 | 20 |
| 21 // The BluetoothDevice class represents a remote Bluetooth device, both | 21 // The BluetoothDevice class represents a remote Bluetooth device, both |
| 22 // its properties and capabilities as discovered by a local adapter and | 22 // its properties and capabilities as discovered by a local adapter and |
| 23 // actions that may be performed on the remove device such as pairing, | 23 // actions that may be performed on the remove device such as pairing, |
| 24 // connection and disconnection. | 24 // connection and disconnection. |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 PinCodeCallback pincode_callback_; | 467 PinCodeCallback pincode_callback_; |
| 468 PasskeyCallback passkey_callback_; | 468 PasskeyCallback passkey_callback_; |
| 469 ConfirmationCallback confirmation_callback_; | 469 ConfirmationCallback confirmation_callback_; |
| 470 | 470 |
| 471 DISALLOW_COPY_AND_ASSIGN(BluetoothDevice); | 471 DISALLOW_COPY_AND_ASSIGN(BluetoothDevice); |
| 472 }; | 472 }; |
| 473 | 473 |
| 474 } // namespace chromeos | 474 } // namespace chromeos |
| 475 | 475 |
| 476 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 476 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
| OLD | NEW |