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

Unified Diff: chrome/browser/chromeos/cros/mock_login_library.h

Issue 3278001: [Chrome OS] more of the ownership api (Closed)
Patch Set: fix MockLoginLibrary Created 10 years, 4 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 | « chrome/browser/chromeos/cros/login_library.cc ('k') | chrome/browser/chromeos/login/owner_key_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/cros/mock_login_library.h
diff --git a/chrome/browser/chromeos/cros/mock_login_library.h b/chrome/browser/chromeos/cros/mock_login_library.h
index 29cc6a6a57d9dfd32cf4d057b2b96cc9ae1a5aa8..d09c971548fd8457cc0b69e2c2f12762953d4fbe 100644
--- a/chrome/browser/chromeos/cros/mock_login_library.h
+++ b/chrome/browser/chromeos/cros/mock_login_library.h
@@ -18,8 +18,22 @@ class MockLoginLibrary : public LoginLibrary {
MockLoginLibrary() {}
virtual ~MockLoginLibrary() {}
MOCK_METHOD0(EmitLoginPromptReady, bool(void));
- MOCK_METHOD2(SetOwnerKey, bool(const std::vector<uint8>&,
+ MOCK_METHOD2(CheckWhitelist, bool(const std::string&, std::vector<uint8>*));
+ MOCK_METHOD3(RetrieveProperty, bool(const std::string&,
+ std::string*,
+ std::vector<uint8>*));
+ MOCK_METHOD2(SetOwnerKeyAsync, bool(const std::vector<uint8>&,
Delegate<bool>*));
+ MOCK_METHOD4(StorePropertyAsync, bool(const std::string&,
+ const std::string&,
+ const std::vector<uint8>&,
+ Delegate<bool>*));
+ MOCK_METHOD3(UnwhitelistAsync, bool(const std::string&,
+ const std::vector<uint8>&,
+ Delegate<bool>*));
+ MOCK_METHOD3(WhitelistAsync, bool(const std::string&,
+ const std::vector<uint8>&,
+ Delegate<bool>*));
MOCK_METHOD2(StartSession, bool(const std::string&, const std::string&));
MOCK_METHOD1(StopSession, bool(const std::string&));
MOCK_METHOD2(RestartJob, bool(int, const std::string&));
« no previous file with comments | « chrome/browser/chromeos/cros/login_library.cc ('k') | chrome/browser/chromeos/login/owner_key_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698