| Index: base/mac/sdk_forward_declarations.mm
|
| diff --git a/base/mac/sdk_forward_declarations.mm b/base/mac/sdk_forward_declarations.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..a402a417d85ed7e85d0df5e02f41da5ce7fa1e89
|
| --- /dev/null
|
| +++ b/base/mac/sdk_forward_declarations.mm
|
| @@ -0,0 +1,14 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "base/mac/sdk_forward_declarations.h"
|
| +
|
| +// Replicate specific 10.7 SDK declarations for building with prior SDKs.
|
| +#if !defined(MAC_OS_X_VERSION_10_7) || \
|
| + MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7
|
| +
|
| +NSString* const NSWindowWillEnterFullScreenNotification =
|
| + @"NSWindowWillEnterFullScreenNotification";
|
| +
|
| +#endif // MAC_OS_X_VERSION_10_7
|
|
|