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 0ce9221e364e19fd6aa85fb6aa7df1183e20ec5e..078bb60ccd50c699c3e77a62c25a1db82a4585ef 100644 |
--- a/chromeos/dbus/mock_shill_profile_client.h |
+++ b/chromeos/dbus/mock_shill_profile_client.h |
@@ -26,14 +26,19 @@ class MockShillProfileClient : public ShillProfileClient { |
MOCK_METHOD2(RemovePropertyChangedObserver, |
void(const dbus::ObjectPath& profile_path, |
ShillPropertyChangedObserver* observer)); |
- 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 |