Index: base/mac/foundation_util.h |
=================================================================== |
--- base/mac/foundation_util.h (revision 137420) |
+++ base/mac/foundation_util.h (working copy) |
@@ -33,6 +33,9 @@ |
typedef unsigned int NSSearchPathDomainMask; |
#endif |
+typedef struct OpaqueSecTrustRef* SecACLRef; |
+typedef struct OpaqueSecTrustedApplicationRef* SecTrustedApplicationRef; |
Nico
2012/05/16 16:55:11
I think it's strange that something in base/mac co
|
+ |
namespace base { |
namespace mac { |
@@ -245,8 +248,11 @@ |
CF_CAST_DECL(CFSet); |
CF_CAST_DECL(CFString); |
-#undef CF_CAST_DEFN |
+CF_CAST_DECL(SecACL); |
+CF_CAST_DECL(SecTrustedApplication); |
+#undef CF_CAST_DECL |
+ |
#if defined(__OBJC__) |
// ObjCCast<>() and ObjCCastStrict<>() cast a basic id to a more |