xref: /aosp_15_r20/external/cronet/crypto/mock_apple_keychain_ios.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2012 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "base/time/time.h"
6 #include "crypto/mock_apple_keychain.h"
7 
8 namespace crypto {
9 
MockAppleKeychain()10 MockAppleKeychain::MockAppleKeychain()
11     : find_generic_result_(noErr),
12       called_add_generic_(false),
13       password_data_count_(0) {
14 }
15 
~MockAppleKeychain()16 MockAppleKeychain::~MockAppleKeychain() {
17 }
18 
19 }  // namespace crypto
20