Index: chromeos/dbus/mock_flimflam_profile_client.h |
diff --git a/chromeos/dbus/mock_flimflam_profile_client.h b/chromeos/dbus/mock_flimflam_profile_client.h |
index 61afc1b896a3efbc511b78775764a899ffd0956a..88e67f545fb0bf5a7ebc599f9885df5edf3e7ac0 100644 |
--- a/chromeos/dbus/mock_flimflam_profile_client.h |
+++ b/chromeos/dbus/mock_flimflam_profile_client.h |
@@ -17,13 +17,18 @@ class MockFlimflamProfileClient : public FlimflamProfileClient { |
MockFlimflamProfileClient(); |
virtual ~MockFlimflamProfileClient(); |
- MOCK_METHOD1(SetPropertyChangedHandler, |
- void(const PropertyChangedHandler& handler)); |
- MOCK_METHOD0(ResetPropertyChangedHandler, void()); |
- MOCK_METHOD1(GetProperties, void(const DictionaryValueCallback& callback)); |
- MOCK_METHOD2(GetEntry, void(const dbus::ObjectPath& path, |
+ MOCK_METHOD2(SetPropertyChangedHandler, |
+ void(const dbus::ObjectPath& profile_path, |
+ 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_METHOD2(DeleteEntry, void(const dbus::ObjectPath& path, |
+ MOCK_METHOD3(DeleteEntry, void(const dbus::ObjectPath& profile_path, |
+ const std::string& entry_path, |
const VoidCallback& callback)); |
}; |