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()10MockAppleKeychain::MockAppleKeychain() 11 : find_generic_result_(noErr), 12 called_add_generic_(false), 13 password_data_count_(0) { 14 } 15 ~MockAppleKeychain()16MockAppleKeychain::~MockAppleKeychain() { 17 } 18 19 } // namespace crypto 20