| 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_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| 11 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" | 11 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" |
| 12 #include "chromeos/dbus/bluetooth_out_of_band_pairing_data.h" |
| 12 #include "testing/gmock/include/gmock/gmock.h" | 13 #include "testing/gmock/include/gmock/gmock.h" |
| 13 | 14 |
| 14 namespace chromeos { | 15 namespace chromeos { |
| 15 | 16 |
| 16 class MockBluetoothDevice : public BluetoothDevice { | 17 class MockBluetoothDevice : public BluetoothDevice { |
| 17 public: | 18 public: |
| 18 MockBluetoothDevice(MockBluetoothAdapter* adapter, | 19 MockBluetoothDevice(MockBluetoothAdapter* adapter, |
| 19 const std::string& name, | 20 const std::string& name, |
| 20 const std::string& address, | 21 const std::string& address, |
| 21 bool paired, | 22 bool paired, |
| 22 bool bonded, | 23 bool bonded, |
| 23 bool connected); | 24 bool connected); |
| 24 virtual ~MockBluetoothDevice(); | 25 virtual ~MockBluetoothDevice(); |
| 25 | 26 |
| 26 MOCK_CONST_METHOD0(address, const std::string&()); | 27 MOCK_CONST_METHOD0(address, const std::string&()); |
| 27 MOCK_CONST_METHOD0(GetName, string16()); | 28 MOCK_CONST_METHOD0(GetName, string16()); |
| 29 MOCK_CONST_METHOD0(GetDeviceType, BluetoothDevice::DeviceType()); |
| 28 MOCK_CONST_METHOD0(IsPaired, bool()); | 30 MOCK_CONST_METHOD0(IsPaired, bool()); |
| 29 MOCK_CONST_METHOD0(IsBonded, bool()); | 31 MOCK_CONST_METHOD0(IsBonded, bool()); |
| 30 MOCK_CONST_METHOD0(IsConnected, bool()); | 32 MOCK_CONST_METHOD0(IsConnected, bool()); |
| 33 MOCK_METHOD2(GetServiceRecords, |
| 34 void(const BluetoothDevice::ServiceRecordsCallback&, |
| 35 const BluetoothDevice::ErrorCallback&)); |
| 31 MOCK_CONST_METHOD1(ProvidesServiceWithUUID, bool(const std::string&)); | 36 MOCK_CONST_METHOD1(ProvidesServiceWithUUID, bool(const std::string&)); |
| 37 MOCK_METHOD2(ProvidesServiceWithName, |
| 38 void(const std::string&, |
| 39 const BluetoothDevice::ProvidesServiceCallback&)); |
| 40 MOCK_METHOD2(ConnectToService, |
| 41 void(const std::string&, |
| 42 const BluetoothDevice::SocketCallback&)); |
| 32 | 43 |
| 33 MOCK_METHOD2(ProvidesServiceWithName, | |
| 34 void(const std::string&, | |
| 35 const ProvidesServiceCallback& callback)); | |
| 36 MOCK_METHOD3(SetOutOfBandPairingData, | 44 MOCK_METHOD3(SetOutOfBandPairingData, |
| 37 void(const chromeos::BluetoothOutOfBandPairingData& data, | 45 void(const chromeos::BluetoothOutOfBandPairingData& data, |
| 38 const base::Closure& callback, | 46 const base::Closure& callback, |
| 39 const BluetoothDevice::ErrorCallback& error_callback)); | 47 const BluetoothDevice::ErrorCallback& error_callback)); |
| 40 MOCK_METHOD2(ClearOutOfBandPairingData, | 48 MOCK_METHOD2(ClearOutOfBandPairingData, |
| 41 void(const base::Closure& callback, | 49 void(const base::Closure& callback, |
| 42 const BluetoothDevice::ErrorCallback& error_callback)); | 50 const BluetoothDevice::ErrorCallback& error_callback)); |
| 43 | 51 |
| 44 private: | 52 private: |
| 45 string16 name_; | 53 string16 name_; |
| 46 std::string address_; | 54 std::string address_; |
| 47 }; | 55 }; |
| 48 | 56 |
| 49 } // namespace chromeos | 57 } // namespace chromeos |
| 50 | 58 |
| 51 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ | 59 #endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_TEST_MOCK_BLUETOOTH_DEVICE_H_ |
| OLD | NEW |