Index: chromeos/dbus/mock_shill_profile_client.h |
diff --git a/chromeos/dbus/mock_shill_profile_client.h b/chromeos/dbus/mock_shill_profile_client.h |
index bd0125dc041c02abee99994ed15c3f4dc3202fc3..4ed46c9a860b482d86f9e9ffb1cf9f39f79032a3 100644 |
--- a/chromeos/dbus/mock_shill_profile_client.h |
+++ b/chromeos/dbus/mock_shill_profile_client.h |
@@ -22,14 +22,19 @@ class MockShillProfileClient : public ShillProfileClient { |
const PropertyChangedHandler& handler)); |
MOCK_METHOD1(ResetPropertyChangedHandler, |
void(const dbus::ObjectPath& profile_path)); |
- MOCK_METHOD2(GetProperties, void(const dbus::ObjectPath& profile_path, |
- const DictionaryValueCallback& callback)); |
- MOCK_METHOD3(GetEntry, void(const dbus::ObjectPath& profile_path, |
- const std::string& entry_path, |
- const DictionaryValueCallback& callback)); |
- MOCK_METHOD3(DeleteEntry, void(const dbus::ObjectPath& profile_path, |
+ MOCK_METHOD3(GetProperties, void( |
+ const dbus::ObjectPath& profile_path, |
+ const DictionaryValueCallbackWithoutStatus& callback, |
+ const ErrorCallback& error_callback)); |
+ MOCK_METHOD4(GetEntry, void( |
+ const dbus::ObjectPath& profile_path, |
+ const std::string& entry_path, |
+ const DictionaryValueCallbackWithoutStatus& callback, |
+ const ErrorCallback& error_callback)); |
+ MOCK_METHOD4(DeleteEntry, void(const dbus::ObjectPath& profile_path, |
const std::string& entry_path, |
- const VoidDBusMethodCallback& callback)); |
+ const base::Closure& callback, |
+ const ErrorCallback& error_callback)); |
}; |
} // namespace chromeos |