[go: nahoru, domu]

blob: 43a3410b31ccebf3f52a5281e0ba8da7de1c5894 [file] [log] [blame]
rsimha@chromium.org073f5c12012-01-03 19:25:571// Copyright (c) 2012 The Chromium Authors. All rights reserved.
stuartmorgan@chromium.org12eb8e72009-06-23 18:56:342// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
avidd373b8b2015-12-21 21:34:435#include <stddef.h>
6
stuartmorgan@chromium.org12eb8e72009-06-23 18:56:347#include "base/logging.h"
avidd373b8b2015-12-21 21:34:438#include "base/macros.h"
avi@chromium.orgb43e5562013-06-28 15:20:029#include "base/time/time.h"
msarda@chromium.org982f1ab2012-08-30 13:03:4610#include "crypto/mock_apple_keychain.h"
akalin@chromium.orgb9d3d002012-03-17 12:14:5011
12namespace crypto {
stuartmorgan@chromium.org12eb8e72009-06-23 18:56:3413
msarda@chromium.org982f1ab2012-08-30 13:03:4614MockAppleKeychain::MockAppleKeychain()
vasilii5baf4fd2017-06-08 19:22:4015 : find_generic_result_(noErr),
rsimha@chromium.orgc8452dd2011-12-27 23:04:5516 called_add_generic_(false),
17 password_data_count_(0) {}
18
vasilii5baf4fd2017-06-08 19:22:4019MockAppleKeychain::~MockAppleKeychain() {}
stuartmorgan@chromium.org12eb8e72009-06-23 18:56:3420
msarda@chromium.org982f1ab2012-08-30 13:03:4621OSStatus MockAppleKeychain::ItemDelete(SecKeychainItemRef itemRef) const {
stuartmorgan@google.com0a21fde2009-07-13 23:44:0822 return noErr;
23}
24
mmaerean@adobe.comd22db52b2012-07-30 22:11:1125} // namespace crypto