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

Unified Diff: mock_platform.h

Issue 6771026: mock_platform: fix argument count for GetGroupId mock (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cryptohome.git@master
Patch Set: Created 9 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mock_platform.h
diff --git a/mock_platform.h b/mock_platform.h
index 31ee45120ff4621591e39caef1f9bdf8f99fdfbf..aaa6c8a003922b66d657a26935d60f05caf3aec0 100644
--- a/mock_platform.h
+++ b/mock_platform.h
@@ -38,7 +38,7 @@ class MockPlatform : public Platform {
MOCK_METHOD3(SetOwnership, bool(const std::string&, uid_t, gid_t));
MOCK_METHOD3(SetOwnershipRecursive, bool(const std::string&, uid_t, gid_t));
MOCK_METHOD3(GetUserId, bool(const std::string&, uid_t*, gid_t*));
- MOCK_METHOD3(GetGroupId, bool(const std::string&, gid_t*));
+ MOCK_METHOD2(GetGroupId, bool(const std::string&, gid_t*));
MOCK_CONST_METHOD1(AmountOfFreeDiskSpace, int64(const std::string&));
MOCK_METHOD2(Symlink, bool(const std::string&, const std::string&));
MOCK_METHOD4(Exec, bool(const std::string&, const std::vector<std::string>&,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698