| Index: base/mac/foundation_util.h
|
| diff --git a/base/mac/foundation_util.h b/base/mac/foundation_util.h
|
| index ee23a17fb16e6c0c5c6856c6cd0ccbd9dd43c120..69b61280c34436c9c96afd4d086db3d8cd0741bc 100644
|
| --- a/base/mac/foundation_util.h
|
| +++ b/base/mac/foundation_util.h
|
| @@ -55,6 +55,12 @@ typedef unsigned int NSSearchPathDomainMask;
|
| typedef struct OpaqueSecTrustRef* SecACLRef;
|
| typedef struct OpaqueSecTrustedApplicationRef* SecTrustedApplicationRef;
|
|
|
| +#if defined(OS_IOS)
|
| +typedef struct CF_BRIDGED_TYPE(id) __SecPolicy* SecPolicyRef;
|
| +#else
|
| +typedef struct OpaqueSecPolicyRef* SecPolicyRef;
|
| +#endif
|
| +
|
| namespace base {
|
|
|
| class FilePath;
|
| @@ -141,6 +147,8 @@ TYPE_NAME_FOR_CF_TYPE_DECL(CGColor);
|
| TYPE_NAME_FOR_CF_TYPE_DECL(CTFont);
|
| TYPE_NAME_FOR_CF_TYPE_DECL(CTRun);
|
|
|
| +TYPE_NAME_FOR_CF_TYPE_DECL(SecPolicy);
|
| +
|
| #undef TYPE_NAME_FOR_CF_TYPE_DECL
|
|
|
| // Retain/release calls for memory management in C++.
|
| @@ -301,6 +309,7 @@ CF_CAST_DECL(CTFontDescriptor);
|
| CF_CAST_DECL(CTRun);
|
|
|
| CF_CAST_DECL(SecACL);
|
| +CF_CAST_DECL(SecPolicy);
|
| CF_CAST_DECL(SecTrustedApplication);
|
|
|
| #undef CF_CAST_DECL
|
|
|