| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/string16.h" | 15 #include "base/string16.h" |
| 16 #include "chrome/browser/chromeos/dbus/bluetooth_agent_service_provider.h" | 16 #include "chromeos/dbus/bluetooth_agent_service_provider.h" |
| 17 #include "chrome/browser/chromeos/dbus/bluetooth_device_client.h" | 17 #include "chromeos/dbus/bluetooth_device_client.h" |
| 18 #include "dbus/object_path.h" | 18 #include "dbus/object_path.h" |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 | 21 |
| 22 class BluetoothAdapter; | 22 class BluetoothAdapter; |
| 23 | 23 |
| 24 // The BluetoothDevice class represents a remote Bluetooth device, both | 24 // The BluetoothDevice class represents a remote Bluetooth device, both |
| 25 // its properties and capabilities as discovered by a local adapter and | 25 // its properties and capabilities as discovered by a local adapter and |
| 26 // actions that may be performed on the remove device such as pairing, | 26 // actions that may be performed on the remove device such as pairing, |
| 27 // connection and disconnection. | 27 // connection and disconnection. |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 PinCodeCallback pincode_callback_; | 477 PinCodeCallback pincode_callback_; |
| 478 PasskeyCallback passkey_callback_; | 478 PasskeyCallback passkey_callback_; |
| 479 ConfirmationCallback confirmation_callback_; | 479 ConfirmationCallback confirmation_callback_; |
| 480 | 480 |
| 481 DISALLOW_COPY_AND_ASSIGN(BluetoothDevice); | 481 DISALLOW_COPY_AND_ASSIGN(BluetoothDevice); |
| 482 }; | 482 }; |
| 483 | 483 |
| 484 } // namespace chromeos | 484 } // namespace chromeos |
| 485 | 485 |
| 486 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ | 486 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_DEVICE_H_ |
| OLD | NEW |