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

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

Issue 665823002: Fix MacViews views_unittest simulate FullScreen test for 10.7+ SDKs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Do something sensible when running on Snow Leopard Created 6 years, 2 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
« no previous file with comments | « base/mac/sdk_forward_declarations.h ('k') | ui/views/cocoa/bridged_native_widget_unittest.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 #include "base/mac/sdk_forward_declarations.h" 5 #include "base/mac/sdk_forward_declarations.h"
6 6
7 // Replicate specific 10.7 SDK declarations for building with prior SDKs. 7 // Replicate specific 10.7 SDK declarations for building with prior SDKs.
8 #if !defined(MAC_OS_X_VERSION_10_7) || \ 8 #if !defined(MAC_OS_X_VERSION_10_7) || \
9 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7 9 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
10 10
11 NSString* const NSWindowWillEnterFullScreenNotification = 11 NSString* const NSWindowWillEnterFullScreenNotification =
12 @"NSWindowWillEnterFullScreenNotification"; 12 @"NSWindowWillEnterFullScreenNotification";
13 13
14 NSString* const NSWindowWillExitFullScreenNotification = 14 NSString* const NSWindowWillExitFullScreenNotification =
15 @"NSWindowWillExitFullScreenNotification"; 15 @"NSWindowWillExitFullScreenNotification";
16 16
17 NSString* const NSWindowDidEnterFullScreenNotification = 17 NSString* const NSWindowDidEnterFullScreenNotification =
18 @"NSWindowDidEnterFullScreenNotification"; 18 @"NSWindowDidEnterFullScreenNotification";
19 19
20 NSString* const NSWindowDidExitFullScreenNotification = 20 NSString* const NSWindowDidExitFullScreenNotification =
21 @"NSWindowDidExitFullScreenNotification"; 21 @"NSWindowDidExitFullScreenNotification";
22 22
23 NSString* const NSWindowDidFailToEnterFullScreenNotification =
24 @"NSWindowDidFailToEnterFullScreenNotification";
25
26 NSString* const NSWindowDidFailToExitFullScreenNotification =
27 @"NSWindowDidFailToExitFullScreenNotification";
28
29 #endif // MAC_OS_X_VERSION_10_7 23 #endif // MAC_OS_X_VERSION_10_7
30 24
31 // Replicate specific 10.10 SDK declarations for building with prior SDKs. 25 // Replicate specific 10.10 SDK declarations for building with prior SDKs.
32 #if !defined(MAC_OS_X_VERSION_10_10) || \ 26 #if !defined(MAC_OS_X_VERSION_10_10) || \
33 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10 27 MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_10
34 28
35 NSString* const NSUserActivityTypeBrowsingWeb = 29 NSString* const NSUserActivityTypeBrowsingWeb =
36 @"NSUserActivityTypeBrowsingWeb"; 30 @"NSUserActivityTypeBrowsingWeb";
37 31
38 NSString* const NSAppearanceNameVibrantDark = @"NSAppearanceNameVibrantDark"; 32 NSString* const NSAppearanceNameVibrantDark = @"NSAppearanceNameVibrantDark";
39 33
40 #endif // MAC_OS_X_VERSION_10_10 34 #endif // MAC_OS_X_VERSION_10_10
OLDNEW
« no previous file with comments | « base/mac/sdk_forward_declarations.h ('k') | ui/views/cocoa/bridged_native_widget_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698