Commit be792272 authored by Avi Drissman's avatar Avi Drissman Committed by Commit Bot

Remove unneeded Mac SDK forward declaration.

BUG=1044828

Change-Id: Ifdbd3a894fe2bf35e784e59620bedcc4063da35b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2017044
Auto-Submit: Avi Drissman <avi@chromium.org>
Commit-Queue: Elly Fong-Jones <ellyjones@chromium.org>
Reviewed-by: default avatarElly Fong-Jones <ellyjones@chromium.org>
Cr-Commit-Position: refs/heads/master@{#734612}
parent b089c1a2
...@@ -69,56 +69,6 @@ BASE_EXPORT extern NSString* const CIDetectorTypeText; ...@@ -69,56 +69,6 @@ BASE_EXPORT extern NSString* const CIDetectorTypeText;
#endif // MAC_OS_X_VERSION_10_11 #endif // MAC_OS_X_VERSION_10_11
} // extern "C" } // extern "C"
// Once Chrome no longer supports OSX 10.10, everything within this
// preprocessor block can be removed.
#if !defined(MAC_OS_X_VERSION_10_11) || \
MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11
@class NSLayoutDimension;
@class NSLayoutXAxisAnchor;
@class NSLayoutYAxisAnchor;
@interface NSObject (ElCapitanSDK)
- (NSLayoutConstraint*)constraintEqualToConstant:(CGFloat)c;
- (NSLayoutConstraint*)constraintGreaterThanOrEqualToConstant:(CGFloat)c;
@end
@interface NSView (ElCapitanSDK)
- (void)setPressureConfiguration:(NSPressureConfiguration*)aConfiguration
API_AVAILABLE(macos(10.11));
@property(readonly, strong)
NSLayoutXAxisAnchor* leftAnchor API_AVAILABLE(macos(10.11));
@property(readonly, strong)
NSLayoutXAxisAnchor* rightAnchor API_AVAILABLE(macos(10.11));
@property(readonly, strong)
NSLayoutYAxisAnchor* bottomAnchor API_AVAILABLE(macos(10.11));
@property(readonly, strong)
NSLayoutDimension* widthAnchor API_AVAILABLE(macos(10.11));
@end
@interface NSWindow (ElCapitanSDK)
- (void)performWindowDragWithEvent:(NSEvent*)event;
@end
@interface CIRectangleFeature (ElCapitanSDK)
@property(readonly) CGRect bounds;
@end
@class CIRectangleFeature;
#endif // MAC_OS_X_VERSION_10_11
// Once Chrome no longer supports OSX 10.11, everything within this
// preprocessor block can be removed.
#if !defined(MAC_OS_X_VERSION_10_12) || \
MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_12
@interface NSWindow (SierraSDK)
@property(class) BOOL allowsAutomaticWindowTabbing;
@end
#endif // MAC_OS_X_VERSION_10_12
// Once Chrome no longer supports OSX 10.12, everything within this // Once Chrome no longer supports OSX 10.12, everything within this
// preprocessor block can be removed. // preprocessor block can be removed.
#if !defined(MAC_OS_X_VERSION_10_13) || \ #if !defined(MAC_OS_X_VERSION_10_13) || \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment