| Index: chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h
|
| diff --git a/chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h b/chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h
|
| index f88407b9890dd8b12bd53a6adc8acaaacc909633..f2d204f0a4d935a0faf1f059f3cd10f498ca9af4 100644
|
| --- a/chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h
|
| +++ b/chrome/browser/chromeos/bluetooth/test/mock_bluetooth_device.h
|
| @@ -24,6 +24,14 @@ class MockBluetoothDevice : public BluetoothDevice {
|
| MOCK_CONST_METHOD0(GetName, string16());
|
| MOCK_CONST_METHOD1(ProvidesServiceWithUUID, bool(const std::string&));
|
|
|
| + MOCK_METHOD3(SetOutOfBandPairingData,
|
| + void(const chromeos::BluetoothOutOfBandPairingData& data,
|
| + const base::Closure& callback,
|
| + const BluetoothDevice::ErrorCallback& error_callback));
|
| + MOCK_METHOD2(ClearOutOfBandPairingData,
|
| + void(const base::Closure& callback,
|
| + const BluetoothDevice::ErrorCallback& error_callback));
|
| +
|
| private:
|
| string16 name_;
|
| std::string address_;
|
|
|