Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Unified Diff: chromeos/dbus/flimflam_profile_client.h

Issue 9958045: Reimplement Libcros fucntions using FlimflamProfileClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move command line check to NetworkLibraryImplCros Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698