blob: 4edc710ea2ff9cc9badba85d5b05234e836e8b1e [file] [log] [blame]
James Robinson646469d2014-10-03 15:33:28 -07001// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/mac/sdk_forward_declarations.h"
6
7// Replicate specific 10.7 SDK declarations for building with prior SDKs.
8#if !defined(MAC_OS_X_VERSION_10_7) || \
9 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
10
11NSString* const NSWindowWillEnterFullScreenNotification =
12 @"NSWindowWillEnterFullScreenNotification";
13
James Robinsone2ac7e82014-10-15 13:21:59 -070014NSString* const NSWindowWillExitFullScreenNotification =
15 @"NSWindowWillExitFullScreenNotification";
16
17NSString* const NSWindowDidEnterFullScreenNotification =
18 @"NSWindowDidEnterFullScreenNotification";
19
20NSString* const NSWindowDidExitFullScreenNotification =
21 @"NSWindowDidExitFullScreenNotification";
22
James Robinson7f480212014-10-31 10:28:08 -070023NSString* const NSWindowDidChangeBackingPropertiesNotification =
24 @"NSWindowDidChangeBackingPropertiesNotification";
25
Etienne Membrives386015a2015-02-19 17:27:12 +010026NSString* const CBAdvertisementDataServiceDataKey = @"kCBAdvDataServiceData";
27
James Robinson646469d2014-10-03 15:33:28 -070028#endif // MAC_OS_X_VERSION_10_7
29
James Robinson7f480212014-10-31 10:28:08 -070030// Replicate specific 10.9 SDK declarations for building with prior SDKs.
31#if !defined(MAC_OS_X_VERSION_10_9) || \
32 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_9
33
34NSString* const NSWindowDidChangeOcclusionStateNotification =
35 @"NSWindowDidChangeOcclusionStateNotification";
36
Etienne Membrives386015a2015-02-19 17:27:12 +010037NSString* const CBAdvertisementDataIsConnectable = @"kCBAdvDataIsConnectable";
38
James Robinson7f480212014-10-31 10:28:08 -070039#endif // MAC_OS_X_VERSION_10_9
40
James Robinson646469d2014-10-03 15:33:28 -070041// Replicate specific 10.10 SDK declarations for building with prior SDKs.
42#if !defined(MAC_OS_X_VERSION_10_10) || \
43 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10
44
45NSString* const NSUserActivityTypeBrowsingWeb =
46 @"NSUserActivityTypeBrowsingWeb";
47
48NSString* const NSAppearanceNameVibrantDark = @"NSAppearanceNameVibrantDark";
49
50#endif // MAC_OS_X_VERSION_10_10