| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // This file contains forward declarations for items in later SDKs than the | 5 // This file contains forward declarations for items in later SDKs than the |
| 6 // default one with which Chromium is built (currently 10.10). | 6 // default one with which Chromium is built (currently 10.10). |
| 7 // If you call any function from this header, be sure to check at runtime for | 7 // If you call any function from this header, be sure to check at runtime for |
| 8 // respondsToSelector: before calling these functions (else your code will crash | 8 // respondsToSelector: before calling these functions (else your code will crash |
| 9 // on older OS X versions that chrome still supports). | 9 // on older OS X versions that chrome still supports). |
| 10 | 10 |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 // preprocessor block can be removed. | 180 // preprocessor block can be removed. |
| 181 #if !defined(MAC_OS_X_VERSION_10_11) || \ | 181 #if !defined(MAC_OS_X_VERSION_10_11) || \ |
| 182 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11 | 182 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11 |
| 183 | 183 |
| 184 @class NSLayoutDimension; | 184 @class NSLayoutDimension; |
| 185 @class NSLayoutXAxisAnchor; | 185 @class NSLayoutXAxisAnchor; |
| 186 @class NSLayoutYAxisAnchor; | 186 @class NSLayoutYAxisAnchor; |
| 187 | 187 |
| 188 @interface NSObject (ElCapitanSDK) | 188 @interface NSObject (ElCapitanSDK) |
| 189 - (NSLayoutConstraint*)constraintEqualToConstant:(CGFloat)c; | 189 - (NSLayoutConstraint*)constraintEqualToConstant:(CGFloat)c; |
| 190 - (NSLayoutConstraint*)constraintGreaterThanOrEqualToConstant:(CGFloat)c; |
| 190 @end | 191 @end |
| 191 | 192 |
| 192 @interface NSView (ElCapitanSDK) | 193 @interface NSView (ElCapitanSDK) |
| 193 @property(readonly, strong) NSLayoutXAxisAnchor* leftAnchor; | 194 @property(readonly, strong) NSLayoutXAxisAnchor* leftAnchor; |
| 194 @property(readonly, strong) NSLayoutXAxisAnchor* rightAnchor; | 195 @property(readonly, strong) NSLayoutXAxisAnchor* rightAnchor; |
| 195 @property(readonly, strong) NSLayoutYAxisAnchor* bottomAnchor; | 196 @property(readonly, strong) NSLayoutYAxisAnchor* bottomAnchor; |
| 196 @property(readonly, strong) NSLayoutDimension* widthAnchor; | 197 @property(readonly, strong) NSLayoutDimension* widthAnchor; |
| 197 @end | 198 @end |
| 198 | 199 |
| 199 @interface NSWindow (ElCapitanSDK) | 200 @interface NSWindow (ElCapitanSDK) |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 action:(SEL)action; | 240 action:(SEL)action; |
| 240 @end | 241 @end |
| 241 | 242 |
| 242 @interface NSSegmentedControl (SierraPointOneSDK) | 243 @interface NSSegmentedControl (SierraPointOneSDK) |
| 243 + (instancetype)segmentedControlWithImages:(NSArray*)images | 244 + (instancetype)segmentedControlWithImages:(NSArray*)images |
| 244 trackingMode:(NSSegmentSwitchTracking)trackingMode | 245 trackingMode:(NSSegmentSwitchTracking)trackingMode |
| 245 target:(id)target | 246 target:(id)target |
| 246 action:(SEL)action; | 247 action:(SEL)action; |
| 247 @end | 248 @end |
| 248 | 249 |
| 250 @interface NSApplication (SierraPointOneSDK) |
| 251 @property BOOL automaticCustomizeTouchBarMenuItemEnabled; |
| 252 @end |
| 253 |
| 249 #endif // MAC_OS_X_VERSION_10_12_1 | 254 #endif // MAC_OS_X_VERSION_10_12_1 |
| 250 | 255 |
| 251 // ---------------------------------------------------------------------------- | 256 // ---------------------------------------------------------------------------- |
| 252 // The symbol for kCWSSIDDidChangeNotification is available in the | 257 // The symbol for kCWSSIDDidChangeNotification is available in the |
| 253 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not | 258 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not |
| 254 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, | 259 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, |
| 255 // declare the symbol. | 260 // declare the symbol. |
| 256 // ---------------------------------------------------------------------------- | 261 // ---------------------------------------------------------------------------- |
| 257 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; | 262 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; |
| 258 | 263 |
| 259 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 264 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |