Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Side by Side Diff: base/mac/sdk_forward_declarations.h

Issue 564953002: Add support for dark theme in Mac Notification Center (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698