diff options
author | antrim@chromium.org <antrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-24 16:36:42 +0000 |
---|---|---|
committer | antrim@chromium.org <antrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-24 16:36:42 +0000 |
commit | cbe40a808ee2b9f33d13defe42570173db36665d (patch) | |
tree | ca568581393838e27c441175ef3f6404e2964cee /chromeos/dbus/fake_cryptohome_client.h | |
parent | c287f06c73b1b5bcc8bf85087a3a54c6c2925fe2 (diff) | |
download | chromium_src-cbe40a808ee2b9f33d13defe42570173db36665d.zip chromium_src-cbe40a808ee2b9f33d13defe42570173db36665d.tar.gz chromium_src-cbe40a808ee2b9f33d13defe42570173db36665d.tar.bz2 |
Add calls to cryptohome for adding extra keys.
BUG=243342
TBR=satorux@chromium.org
TEST=manual, on desktop/device - go through user creation flow
Review URL: https://chromiumcodereview.appspot.com/16950019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208221 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/dbus/fake_cryptohome_client.h')
-rw-r--r-- | chromeos/dbus/fake_cryptohome_client.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chromeos/dbus/fake_cryptohome_client.h b/chromeos/dbus/fake_cryptohome_client.h index 62cdb8b..e8ff10c 100644 --- a/chromeos/dbus/fake_cryptohome_client.h +++ b/chromeos/dbus/fake_cryptohome_client.h @@ -42,6 +42,10 @@ class FakeCryptohomeClient : public CryptohomeClient { const std::string& key, int flags, const AsyncMethodCallback& callback) OVERRIDE; + virtual void AsyncAddKey(const std::string& username, + const std::string& key, + const std::string& new_key, + const AsyncMethodCallback& callback) OVERRIDE; virtual void AsyncMountGuest(const AsyncMethodCallback& callback) OVERRIDE; virtual void TpmIsReady(const BoolDBusMethodCallback& callback) OVERRIDE; virtual void TpmIsEnabled(const BoolDBusMethodCallback& callback) OVERRIDE; |