| Index: base/mac/sdk_forward_declarations.h
|
| diff --git a/base/mac/sdk_forward_declarations.h b/base/mac/sdk_forward_declarations.h
|
| index 78bd8f8d4423cf51212eeb94ee8431554227b898..789538fa2b6e6c2ccd7a2cc74137cd4619dc30b5 100644
|
| --- a/base/mac/sdk_forward_declarations.h
|
| +++ b/base/mac/sdk_forward_declarations.h
|
| @@ -25,6 +25,21 @@
|
| // OSX SDK being compiled against.
|
| // ----------------------------------------------------------------------------
|
|
|
| +#if !defined(MAC_OS_X_VERSION_10_12) || \
|
| + MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_12
|
| +
|
| +// The protocol was formalized by the 10.12 SDK, but it was informally used
|
| +// before.
|
| +@protocol CAAnimationDelegate
|
| +- (void)animationDidStart:(CAAnimation*)animation;
|
| +- (void)animationDidStop:(CAAnimation*)animation finished:(BOOL)finished;
|
| +@end
|
| +
|
| +@protocol CALayerDelegate
|
| +@end
|
| +
|
| +#endif // MAC_OS_X_VERSION_10_12
|
| +
|
| #if !defined(MAC_OS_X_VERSION_10_11) || \
|
| MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_11
|
|
|
| @@ -50,7 +65,7 @@ enum {
|
| };
|
| typedef NSUInteger NSSpringLoadingHighlight;
|
|
|
| -#endif // MAC_OS_X_VERSION_10_11
|
| +#endif // MAC_OS_X_VERSION_10_11
|
|
|
| // ----------------------------------------------------------------------------
|
| // Define NSStrings only available in newer versions of the OSX SDK to force
|
|
|