Index: ui/gfx/mac/nswindow_frame_controls.h |
diff --git a/ui/gfx/mac/nswindow_frame_controls.h b/ui/gfx/mac/nswindow_frame_controls.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7ec7ab7ee0f6b7aecb549f422c51682a4d218c55 |
--- /dev/null |
+++ b/ui/gfx/mac/nswindow_frame_controls.h |
@@ -0,0 +1,31 @@ |
+// Copyright 2015 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. |
+ |
+#ifndef UI_GFX_MAC_NSWINDOW_FRAME_CONTROLS_H_ |
+#define UI_GFX_MAC_NSWINDOW_FRAME_CONTROLS_H_ |
+ |
+#include "ui/gfx/gfx_export.h" |
+ |
+@class NSWindow; |
+ |
+namespace gfx { |
+ |
+class Size; |
+ |
+// Set whether the window can be fullscreened. |
+GFX_EXPORT void SetNSWindowCanFullscreen(NSWindow* window, |
+ bool allow_fullscreen); |
+ |
+// Sets the min/max size of the window as well as showing/hiding resize, |
+// maximize, and fullscreen controls. |
+// Sizes refer to the content size (inner bounds). |
+GFX_EXPORT void ApplyNSWindowSizeConstraints(NSWindow* window, |
+ const gfx::Size& min_size, |
+ const gfx::Size& max_size, |
+ bool can_resize, |
+ bool can_fullscreen); |
+ |
+} // namespace gfx |
+ |
+#endif // UI_GFX_MAC_NSWINDOW_FRAME_CONTROLS_H_ |