Index: chrome/browser/ui/cocoa/window_event.mm |
diff --git a/chrome/browser/ui/cocoa/window_event.mm b/chrome/browser/ui/cocoa/window_event.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..134910794886522eea9f3937343bb0c94acda0d3 |
--- /dev/null |
+++ b/chrome/browser/ui/cocoa/window_event.mm |
@@ -0,0 +1,14 @@ |
+// 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
|
+// 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" |
Robert Sesek
2014/06/13 14:07:46
Move this file base/mac/sdk_forward_declarations.m
|
+ |
+// 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 |