Index: chromeos/dbus/mock_bluetooth_adapter_client.h |
diff --git a/chromeos/dbus/mock_bluetooth_adapter_client.h b/chromeos/dbus/mock_bluetooth_adapter_client.h |
index a823945225c12e53224bef1d6407d7ab87202f1e..7b4ce12403e0659365f74a225672bc9b7d59a113 100644 |
--- a/chromeos/dbus/mock_bluetooth_adapter_client.h |
+++ b/chromeos/dbus/mock_bluetooth_adapter_client.h |
@@ -14,6 +14,21 @@ namespace chromeos { |
class MockBluetoothAdapterClient : public BluetoothAdapterClient { |
public: |
+ struct Properties : public BluetoothAdapterClient::Properties { |
+ Properties(); |
+ virtual ~Properties(); |
+ |
+ MOCK_METHOD0(ConnectSignals, void()); |
+ |
+ MOCK_METHOD2(Get, void(dbus::PropertyBase* property, |
+ dbus::PropertySet::GetCallback callback)); |
+ MOCK_METHOD0(GetAll, void()); |
+ MOCK_METHOD2(Set, void(dbus::PropertyBase* property, |
+ dbus::PropertySet::SetCallback callback)); |
+ |
+ MOCK_METHOD1(ChangedRecevied, void(dbus::Signal*)); |
Nico
2012/08/17 22:02:12
Typo Recevied.
|
+ }; |
+ |
MockBluetoothAdapterClient(); |
virtual ~MockBluetoothAdapterClient(); |