Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
|
Robert Sesek
2014/06/13 14:07:46
nit: Don't add (c) to copyright lines in new files
| |
| 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" | |
|
Robert Sesek
2014/06/13 14:07:46
Move this file base/mac/sdk_forward_declarations.m
| |
| 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 | |
| 11 NSString* const NSWindowWillEnterFullScreenNotification = | |
| 12 @"NSWindowWillEnterFullScreenNotification"; | |
| 13 | |
| 14 #endif // MAC_OS_X_VERSION_10_7 | |
| OLD | NEW |