Index: chromeos/dbus/flimflam_profile_client.h |
diff --git a/chromeos/dbus/flimflam_profile_client.h b/chromeos/dbus/flimflam_profile_client.h |
index 4cc9f700cb50e4e4055b137fd428cadc60662f66..d226aa37bfe68a6b3ea085bcdd8f353fd4de4395 100644 |
--- a/chromeos/dbus/flimflam_profile_client.h |
+++ b/chromeos/dbus/flimflam_profile_client.h |
@@ -47,23 +47,28 @@ class CHROMEOS_EXPORT FlimflamProfileClient { |
// Sets PropertyChanged signal handler. |
virtual void SetPropertyChangedHandler( |
+ const dbus::ObjectPath& profile_path, |
const PropertyChangedHandler& handler) = 0; |
// Resets PropertyChanged signal handler. |
- virtual void ResetPropertyChangedHandler() = 0; |
+ virtual void ResetPropertyChangedHandler( |
+ const dbus::ObjectPath& profile_path) = 0; |
// Calls GetProperties method. |
// |callback| is called after the method call succeeds. |
- virtual void GetProperties(const DictionaryValueCallback& callback) = 0; |
+ virtual void GetProperties(const dbus::ObjectPath& profile_path, |
+ const DictionaryValueCallback& callback) = 0; |
// Calls GetEntry method. |
// |callback| is called after the method call succeeds. |
- virtual void GetEntry(const dbus::ObjectPath& path, |
+ virtual void GetEntry(const dbus::ObjectPath& profile_path, |
+ const std::string& entry_path, |
const DictionaryValueCallback& callback) = 0; |
// Calls DeleteEntry method. |
// |callback| is called after the method call succeeds. |
- virtual void DeleteEntry(const dbus::ObjectPath& path, |
+ virtual void DeleteEntry(const dbus::ObjectPath& profile_path, |
+ const std::string& entry_path, |
const VoidCallback& callback) = 0; |
protected: |