Disable crashing tests, my previous checkin to mark them flaky did not help.
[chromium-blink-merge.git] / base / crypto / mac_security_services_lock.cc
blobd68d757a1c468ee22d9a00f484bd23573a45320e
1 // Copyright (c) 2011 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.
5 #include "base/crypto/mac_security_services_lock.h"
7 #include "base/memory/singleton.h"
8 #include "base/synchronization/lock.h"
10 namespace {
12 // This singleton pertains to Apple's wrappers over their own CSSM handles,
13 // as opposed to our own CSSM_CSP_HANDLE in cssm_init.cc.
14 class SecurityServicesSingleton {
15 public:
16 static SecurityServicesSingleton* GetInstance() {
17 return Singleton<SecurityServicesSingleton,
18 LeakySingletonTraits<SecurityServicesSingleton> >::get();
21 base::Lock& lock() { return lock_; }
23 private:
24 friend struct DefaultSingletonTraits<SecurityServicesSingleton>;
26 SecurityServicesSingleton() {}
27 ~SecurityServicesSingleton() {}
29 base::Lock lock_;
31 DISALLOW_COPY_AND_ASSIGN(SecurityServicesSingleton);
34 } // namespace
36 namespace base {
38 base::Lock& GetMacSecurityServicesLock() {
39 return SecurityServicesSingleton::GetInstance()->lock();
42 } // namespace base