| 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 DBUS_MOCK_BUS_H_ | 5 #ifndef DBUS_MOCK_BUS_H_ |
| 6 #define DBUS_MOCK_BUS_H_ | 6 #define DBUS_MOCK_BUS_H_ |
| 7 | 7 |
| 8 #include "dbus/bus.h" | 8 #include "dbus/bus.h" |
| 9 #include "dbus/object_path.h" | 9 #include "dbus/object_path.h" |
| 10 #include "testing/gmock/include/gmock/gmock.h" | 10 #include "testing/gmock/include/gmock/gmock.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 DBusPendingCall** pending_call, | 42 DBusPendingCall** pending_call, |
| 43 int timeout_ms)); | 43 int timeout_ms)); |
| 44 MOCK_METHOD2(Send, void(DBusMessage* request, | 44 MOCK_METHOD2(Send, void(DBusMessage* request, |
| 45 uint32* serial)); | 45 uint32* serial)); |
| 46 MOCK_METHOD2(AddFilter, void(DBusHandleMessageFunction handle_message, | 46 MOCK_METHOD2(AddFilter, void(DBusHandleMessageFunction handle_message, |
| 47 void* user_data)); | 47 void* user_data)); |
| 48 MOCK_METHOD2(RemoveFilter, void(DBusHandleMessageFunction handle_message, | 48 MOCK_METHOD2(RemoveFilter, void(DBusHandleMessageFunction handle_message, |
| 49 void* user_data)); | 49 void* user_data)); |
| 50 MOCK_METHOD2(AddMatch, void(const std::string& match_rule, | 50 MOCK_METHOD2(AddMatch, void(const std::string& match_rule, |
| 51 DBusError* error)); | 51 DBusError* error)); |
| 52 MOCK_METHOD2(RemoveMatch, void(const std::string& match_rule, | 52 MOCK_METHOD2(RemoveMatch, bool(const std::string& match_rule, |
| 53 DBusError* error)); | 53 DBusError* error)); |
| 54 MOCK_METHOD4(TryRegisterObjectPath, bool(const ObjectPath& object_path, | 54 MOCK_METHOD4(TryRegisterObjectPath, bool(const ObjectPath& object_path, |
| 55 const DBusObjectPathVTable* vtable, | 55 const DBusObjectPathVTable* vtable, |
| 56 void* user_data, | 56 void* user_data, |
| 57 DBusError* error)); | 57 DBusError* error)); |
| 58 MOCK_METHOD1(UnregisterObjectPath, void(const ObjectPath& object_path)); | 58 MOCK_METHOD1(UnregisterObjectPath, void(const ObjectPath& object_path)); |
| 59 MOCK_METHOD2(PostTaskToOriginThread, void( | 59 MOCK_METHOD2(PostTaskToOriginThread, void( |
| 60 const tracked_objects::Location& from_here, | 60 const tracked_objects::Location& from_here, |
| 61 const base::Closure& task)); | 61 const base::Closure& task)); |
| 62 MOCK_METHOD2(PostTaskToDBusThread, void( | 62 MOCK_METHOD2(PostTaskToDBusThread, void( |
| 63 const tracked_objects::Location& from_here, | 63 const tracked_objects::Location& from_here, |
| 64 const base::Closure& task)); | 64 const base::Closure& task)); |
| 65 MOCK_METHOD3(PostDelayedTaskToDBusThread, void( | 65 MOCK_METHOD3(PostDelayedTaskToDBusThread, void( |
| 66 const tracked_objects::Location& from_here, | 66 const tracked_objects::Location& from_here, |
| 67 const base::Closure& task, | 67 const base::Closure& task, |
| 68 base::TimeDelta delay)); | 68 base::TimeDelta delay)); |
| 69 MOCK_METHOD0(HasDBusThread, bool()); | 69 MOCK_METHOD0(HasDBusThread, bool()); |
| 70 MOCK_METHOD0(AssertOnOriginThread, void()); | 70 MOCK_METHOD0(AssertOnOriginThread, void()); |
| 71 MOCK_METHOD0(AssertOnDBusThread, void()); | 71 MOCK_METHOD0(AssertOnDBusThread, void()); |
| 72 | 72 |
| 73 protected: | 73 protected: |
| 74 virtual ~MockBus(); | 74 virtual ~MockBus(); |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace dbus | 77 } // namespace dbus |
| 78 | 78 |
| 79 #endif // DBUS_MOCK_BUS_H_ | 79 #endif // DBUS_MOCK_BUS_H_ |
| OLD | NEW |