| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 @interface NSEvent (Yosemite_3_SDK) | 156 @interface NSEvent (Yosemite_3_SDK) |
| 157 @property(readonly) NSInteger stage; | 157 @property(readonly) NSInteger stage; |
| 158 @end | 158 @end |
| 159 | 159 |
| 160 @interface NSView (Yosemite_3_SDK) | 160 @interface NSView (Yosemite_3_SDK) |
| 161 - (void)setPressureConfiguration:(NSPressureConfiguration*)aConfiguration; | 161 - (void)setPressureConfiguration:(NSPressureConfiguration*)aConfiguration; |
| 162 @end | 162 @end |
| 163 | 163 |
| 164 #endif // MAC_OS_X_VERSION_10_10 | 164 #endif // MAC_OS_X_VERSION_10_10 |
| 165 | 165 |
| 166 // ---------------------------------------------------------------------------- |
| 167 // Define NSStrings only available in newer versions of the OSX SDK to force |
| 168 // them to be statically linked. |
| 169 // ---------------------------------------------------------------------------- |
| 170 |
| 171 extern "C" { |
| 172 #if !defined(MAC_OS_X_VERSION_10_11) || \ |
| 173 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11 |
| 174 BASE_EXPORT extern NSString* const CIDetectorTypeText; |
| 175 #endif // MAC_OS_X_VERSION_10_11 |
| 176 } // extern "C" |
| 177 |
| 166 // Once Chrome no longer supports OSX 10.10, everything within this | 178 // Once Chrome no longer supports OSX 10.10, everything within this |
| 167 // preprocessor block can be removed. | 179 // preprocessor block can be removed. |
| 168 #if !defined(MAC_OS_X_VERSION_10_11) || \ | 180 #if !defined(MAC_OS_X_VERSION_10_11) || \ |
| 169 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11 | 181 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_11 |
| 170 | 182 |
| 171 @class NSLayoutDimension; | 183 @class NSLayoutDimension; |
| 172 @class NSLayoutXAxisAnchor; | 184 @class NSLayoutXAxisAnchor; |
| 173 @class NSLayoutYAxisAnchor; | 185 @class NSLayoutYAxisAnchor; |
| 174 | 186 |
| 175 @interface NSObject (ElCapitanSDK) | 187 @interface NSObject (ElCapitanSDK) |
| 176 - (NSLayoutConstraint*)constraintEqualToConstant:(CGFloat)c; | 188 - (NSLayoutConstraint*)constraintEqualToConstant:(CGFloat)c; |
| 177 @end | 189 @end |
| 178 | 190 |
| 179 @interface NSView (ElCapitanSDK) | 191 @interface NSView (ElCapitanSDK) |
| 180 @property(readonly, strong) NSLayoutXAxisAnchor* leftAnchor; | 192 @property(readonly, strong) NSLayoutXAxisAnchor* leftAnchor; |
| 181 @property(readonly, strong) NSLayoutXAxisAnchor* rightAnchor; | 193 @property(readonly, strong) NSLayoutXAxisAnchor* rightAnchor; |
| 182 @property(readonly, strong) NSLayoutYAxisAnchor* bottomAnchor; | 194 @property(readonly, strong) NSLayoutYAxisAnchor* bottomAnchor; |
| 183 @property(readonly, strong) NSLayoutDimension* widthAnchor; | 195 @property(readonly, strong) NSLayoutDimension* widthAnchor; |
| 184 @end | 196 @end |
| 185 | 197 |
| 186 @interface NSWindow (ElCapitanSDK) | 198 @interface NSWindow (ElCapitanSDK) |
| 187 - (void)performWindowDragWithEvent:(NSEvent*)event; | 199 - (void)performWindowDragWithEvent:(NSEvent*)event; |
| 188 @end | 200 @end |
| 189 | 201 |
| 202 @interface CIRectangleFeature (ElCapitanSDK) |
| 203 @property(readonly) CGRect bounds; |
| 204 @end |
| 205 |
| 206 @class CIRectangleFeature; |
| 207 |
| 190 #endif // MAC_OS_X_VERSION_10_11 | 208 #endif // MAC_OS_X_VERSION_10_11 |
| 191 | 209 |
| 192 // Once Chrome no longer supports OSX 10.11, everything within this | 210 // Once Chrome no longer supports OSX 10.11, everything within this |
| 193 // preprocessor block can be removed. | 211 // preprocessor block can be removed. |
| 194 #if !defined(MAC_OS_X_VERSION_10_12) || \ | 212 #if !defined(MAC_OS_X_VERSION_10_12) || \ |
| 195 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_12 | 213 MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_12 |
| 196 | 214 |
| 197 @interface NSWindow (SierraSDK) | 215 @interface NSWindow (SierraSDK) |
| 198 @property(class) BOOL allowsAutomaticWindowTabbing; | 216 @property(class) BOOL allowsAutomaticWindowTabbing; |
| 199 @end | 217 @end |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 | 249 |
| 232 // ---------------------------------------------------------------------------- | 250 // ---------------------------------------------------------------------------- |
| 233 // The symbol for kCWSSIDDidChangeNotification is available in the | 251 // The symbol for kCWSSIDDidChangeNotification is available in the |
| 234 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not | 252 // CoreWLAN.framework for OSX versions 10.6 through 10.10. The symbol is not |
| 235 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, | 253 // declared in the OSX 10.9+ SDK, so when compiling against an OSX 10.9+ SDK, |
| 236 // declare the symbol. | 254 // declare the symbol. |
| 237 // ---------------------------------------------------------------------------- | 255 // ---------------------------------------------------------------------------- |
| 238 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; | 256 BASE_EXPORT extern "C" NSString* const kCWSSIDDidChangeNotification; |
| 239 | 257 |
| 240 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 258 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |