Chromium Code Reviews| Index: base/mac/sdk_forward_declarations.h |
| diff --git a/base/mac/sdk_forward_declarations.h b/base/mac/sdk_forward_declarations.h |
| index e8682caf6fa7ab0d51d801483d485c5bd8369757..7283d12fd39895963410397844d98ea55123fce7 100644 |
| --- a/base/mac/sdk_forward_declarations.h |
| +++ b/base/mac/sdk_forward_declarations.h |
| @@ -257,6 +257,15 @@ typedef NSUInteger NSWindowOcclusionState; |
| - (NSWindowOcclusionState)occlusionState; |
| @end |
| +@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.
|
| ++ (NSAppearance*)appearanceNamed:(NSString*)name; |
| +@end |
| + |
| +@protocol NSAppearanceCustomization |
| +@property(retain) NSAppearance* appearance; |
| +@property(readonly) NSAppearance* effectiveAppearance; |
| +@end |
| + |
| #endif // MAC_OS_X_VERSION_10_9 |
| #if !defined(MAC_OS_X_VERSION_10_10) || \ |
| @@ -271,6 +280,8 @@ typedef NSUInteger NSWindowOcclusionState; |
| BASE_EXPORT extern "C" NSString* const NSUserActivityTypeBrowsingWeb; |
| +BASE_EXPORT extern "C" NSString* const NSAppearanceNameVibrantDark; |
| + |
| #endif // MAC_OS_X_VERSION_10_10 |
| #endif // BASE_MAC_SDK_FORWARD_DECLARATIONS_H_ |