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

Unified Diff: chromeos/dbus/mock_flimflam_profile_client.h

Issue 9958045: Reimplement Libcros fucntions using FlimflamProfileClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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
« no previous file with comments | « chromeos/dbus/flimflam_profile_client.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
};
« no previous file with comments | « chromeos/dbus/flimflam_profile_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698