mock_apple_keychain_ios.cc 470 B

12345678910111213141516171819
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "base/time/time.h"
  5. #include "crypto/mock_apple_keychain.h"
  6. namespace crypto {
  7. MockAppleKeychain::MockAppleKeychain()
  8. : find_generic_result_(noErr),
  9. called_add_generic_(false),
  10. password_data_count_(0) {
  11. }
  12. MockAppleKeychain::~MockAppleKeychain() {
  13. }
  14. } // namespace crypto