Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: crypto/mac_security_services_lock.cc

Issue 1539353003: Switch to standard integer types in crypto/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « crypto/hmac_win.cc ('k') | crypto/mock_apple_keychain.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "crypto/mac_security_services_lock.h" 5 #include "crypto/mac_security_services_lock.h"
6 6
7 #include "base/macros.h"
7 #include "base/memory/singleton.h" 8 #include "base/memory/singleton.h"
8 #include "base/synchronization/lock.h" 9 #include "base/synchronization/lock.h"
9 10
10 namespace { 11 namespace {
11 12
12 // This singleton pertains to Apple's wrappers over their own CSSM handles, 13 // 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 // as opposed to our own CSSM_CSP_HANDLE in cssm_init.cc.
14 class SecurityServicesSingleton { 15 class SecurityServicesSingleton {
15 public: 16 public:
16 static SecurityServicesSingleton* GetInstance() { 17 static SecurityServicesSingleton* GetInstance() {
(...skipping 17 matching lines...) Expand all
34 35
35 } // namespace 36 } // namespace
36 37
37 namespace crypto { 38 namespace crypto {
38 39
39 base::Lock& GetMacSecurityServicesLock() { 40 base::Lock& GetMacSecurityServicesLock() {
40 return SecurityServicesSingleton::GetInstance()->lock(); 41 return SecurityServicesSingleton::GetInstance()->lock();
41 } 42 }
42 43
43 } // namespace crypto 44 } // namespace crypto
OLDNEW
« no previous file with comments | « crypto/hmac_win.cc ('k') | crypto/mock_apple_keychain.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698