Chromium Code Reviews| 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.6). | 6 // default one with which Chromium is built (currently 10.6). |
| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 250 | 250 |
| 251 enum { | 251 enum { |
| 252 NSWindowOcclusionStateVisible = 1UL << 1, | 252 NSWindowOcclusionStateVisible = 1UL << 1, |
| 253 }; | 253 }; |
| 254 typedef NSUInteger NSWindowOcclusionState; | 254 typedef NSUInteger NSWindowOcclusionState; |
| 255 | 255 |
| 256 @interface NSWindow (MavericksSDK) | 256 @interface NSWindow (MavericksSDK) |
| 257 - (NSWindowOcclusionState)occlusionState; | 257 - (NSWindowOcclusionState)occlusionState; |
| 258 @end | 258 @end |
| 259 | 259 |
| 260 @interface NSAppearance : NSObject | |
|
Robert Sesek
2014/09/11 20:50:00
You won't be able to do this, unfortunately. What
dewittj
2014/09/12 18:16:23
Done.
| |
| 261 + (NSAppearance*)appearanceNamed:(NSString*)name; | |
| 262 @end | |
| 263 | |
| 264 @protocol NSAppearanceCustomization | |
| 265 @property(retain) NSAppearance* appearance; | |
| 266 @property(readonly) NSAppearance* effectiveAppearance; | |
| 267 @end | |
| 268 | |
| 260 #endif // MAC_OS_X_VERSION_10_9 | 269 #endif // MAC_OS_X_VERSION_10_9 |
| 261 | 270 |
| 262 #if !defined(MAC_OS_X_VERSION_10_10) || \ | 271 #if !defined(MAC_OS_X_VERSION_10_10) || \ |
| 263 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10 | 272 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10 |
| 264 | 273 |
| 265 @interface NSUserActivity : NSObject | 274 @interface NSUserActivity : NSObject |
| 266 | 275 |
| 267 @property (readonly, copy) NSString* activityType; | 276 @property (readonly, copy) NSString* activityType; |
| 268 @property (copy) NSURL* webPageURL; | 277 @property (copy) NSURL* webPageURL; |
| 269 | 278 |
| 270 @end | 279 @end |
| 271 | 280 |
| 272 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; | 281 BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; |
| 273 | 282 |
| 283 BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; | |
| 284 | |
| 274 #endif // MAC_OS_X_VERSION_10_10 | 285 #endif // MAC_OS_X_VERSION_10_10 |
| 275 | 286 |
| 276 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ | 287 #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |
| OLD | NEW |