Roll src/third_party/ffmpeg ff47c53:3a43b48
[chromium-blink-merge.git] / base / mac / sdk_forward_declarations.mm
blob7a5703228f1c3837323093ac9c9a98d255504f7e
1 // 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.
5 #include "base/mac/sdk_forward_declarations.h"
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
11 NSString* const NSWindowWillEnterFullScreenNotification =
12     @"NSWindowWillEnterFullScreenNotification";
14 NSString* const NSWindowWillExitFullScreenNotification =
15     @"NSWindowWillExitFullScreenNotification";
17 NSString* const NSWindowDidEnterFullScreenNotification =
18     @"NSWindowDidEnterFullScreenNotification";
20 NSString* const NSWindowDidExitFullScreenNotification =
21     @"NSWindowDidExitFullScreenNotification";
23 NSString* const NSWindowDidChangeBackingPropertiesNotification =
24     @"NSWindowDidChangeBackingPropertiesNotification";
26 #endif  // MAC_OS_X_VERSION_10_7
28 // Replicate specific 10.9 SDK declarations for building with prior SDKs.
29 #if !defined(MAC_OS_X_VERSION_10_9) || \
30     MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_9
32 NSString* const NSWindowDidChangeOcclusionStateNotification =
33     @"NSWindowDidChangeOcclusionStateNotification";
35 #endif  // MAC_OS_X_VERSION_10_9
37 // Replicate specific 10.10 SDK declarations for building with prior SDKs.
38 #if !defined(MAC_OS_X_VERSION_10_10) || \
39     MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10
41 NSString* const NSUserActivityTypeBrowsingWeb =
42     @"NSUserActivityTypeBrowsingWeb";
44 NSString* const NSAppearanceNameVibrantDark = @"NSAppearanceNameVibrantDark";
46 #endif  // MAC_OS_X_VERSION_10_10