OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef NET_CERT_KEYCHAIN_SEARCH_LIST_MAC_H_ | 5 #ifndef NET_CERT_TEST_KEYCHAIN_SEARCH_LIST_MAC_H_ |
6 #define NET_CERT_KEYCHAIN_SEARCH_LIST_MAC_H_ | 6 #define NET_CERT_TEST_KEYCHAIN_SEARCH_LIST_MAC_H_ |
7 | 7 |
8 #include <CoreServices/CoreServices.h> | 8 #include <CoreServices/CoreServices.h> |
9 #include <Security/Security.h> | 9 #include <Security/Security.h> |
10 | 10 |
11 #include "base/mac/scoped_cftyperef.h" | 11 #include "base/mac/scoped_cftyperef.h" |
12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 class NET_EXPORT TestKeychainSearchList { | 16 class NET_EXPORT TestKeychainSearchList { |
(...skipping 19 matching lines...) Expand all Loading... |
36 void AddKeychain(SecKeychainRef keychain); | 36 void AddKeychain(SecKeychainRef keychain); |
37 | 37 |
38 private: | 38 private: |
39 TestKeychainSearchList(); | 39 TestKeychainSearchList(); |
40 | 40 |
41 base::ScopedCFTypeRef<CFMutableArrayRef> scoped_keychain_search_list; | 41 base::ScopedCFTypeRef<CFMutableArrayRef> scoped_keychain_search_list; |
42 }; | 42 }; |
43 | 43 |
44 } // namespace net | 44 } // namespace net |
45 | 45 |
46 #endif // NET_CERT_KEYCHAIN_SEARCH_LIST_MAC_H_ | 46 #endif // NET_CERT_TEST_KEYCHAIN_SEARCH_LIST_MAC_H_ |
OLD | NEW |