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

Side by Side Diff: chromeos/dbus/fake_cryptohome_client.h

Issue 506943002: Wire up GetKeyDataEx() in Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@d_1_367847_move_to_mount_ex
Patch Set: Added missing OVERRIDE. Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « chromeos/dbus/cryptohome_client.cc ('k') | chromeos/dbus/fake_cryptohome_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_ 6 #define CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 attestation::AttestationKeyType key_type, 153 attestation::AttestationKeyType key_type,
154 const std::string& user_id, 154 const std::string& user_id,
155 const std::string& key_name, 155 const std::string& key_name,
156 const std::string& payload, 156 const std::string& payload,
157 const BoolDBusMethodCallback& callback) OVERRIDE; 157 const BoolDBusMethodCallback& callback) OVERRIDE;
158 virtual void TpmAttestationDeleteKeys( 158 virtual void TpmAttestationDeleteKeys(
159 attestation::AttestationKeyType key_type, 159 attestation::AttestationKeyType key_type,
160 const std::string& user_id, 160 const std::string& user_id,
161 const std::string& key_prefix, 161 const std::string& key_prefix,
162 const BoolDBusMethodCallback& callback) OVERRIDE; 162 const BoolDBusMethodCallback& callback) OVERRIDE;
163 virtual void GetKeyDataEx(
164 const cryptohome::AccountIdentifier& id,
165 const cryptohome::AuthorizationRequest& auth,
166 const cryptohome::GetKeyDataRequest& request,
167 const ProtobufMethodCallback& callback) OVERRIDE;
163 virtual void CheckKeyEx( 168 virtual void CheckKeyEx(
164 const cryptohome::AccountIdentifier& id, 169 const cryptohome::AccountIdentifier& id,
165 const cryptohome::AuthorizationRequest& auth, 170 const cryptohome::AuthorizationRequest& auth,
166 const cryptohome::CheckKeyRequest& request, 171 const cryptohome::CheckKeyRequest& request,
167 const ProtobufMethodCallback& callback) OVERRIDE; 172 const ProtobufMethodCallback& callback) OVERRIDE;
168 virtual void MountEx( 173 virtual void MountEx(
169 const cryptohome::AccountIdentifier& id, 174 const cryptohome::AccountIdentifier& id,
170 const cryptohome::AuthorizationRequest& auth, 175 const cryptohome::AuthorizationRequest& auth,
171 const cryptohome::MountRequest& request, 176 const cryptohome::MountRequest& request,
172 const ProtobufMethodCallback& callback) OVERRIDE; 177 const ProtobufMethodCallback& callback) OVERRIDE;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 std::map<std::string, std::vector<uint8> > install_attrs_; 248 std::map<std::string, std::vector<uint8> > install_attrs_;
244 bool locked_; 249 bool locked_;
245 base::WeakPtrFactory<FakeCryptohomeClient> weak_ptr_factory_; 250 base::WeakPtrFactory<FakeCryptohomeClient> weak_ptr_factory_;
246 251
247 DISALLOW_COPY_AND_ASSIGN(FakeCryptohomeClient); 252 DISALLOW_COPY_AND_ASSIGN(FakeCryptohomeClient);
248 }; 253 };
249 254
250 } // namespace chromeos 255 } // namespace chromeos
251 256
252 #endif // CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_ 257 #endif // CHROMEOS_DBUS_FAKE_CRYPTOHOME_CLIENT_H_
OLDNEW
« no previous file with comments | « chromeos/dbus/cryptohome_client.cc ('k') | chromeos/dbus/fake_cryptohome_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698