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

Side by Side Diff: chrome/browser/ui/cocoa/apps/nswindow_util.mm

Issue 1023083002: [MacViews] Implement size constraints for app windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
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 "chrome/browser/ui/cocoa/apps/nswindow_util.h"
6
7 #include "base/mac/sdk_forward_declarations.h"
8
9 void SetFullScreenCollectionBehavior(NSWindow* window, bool allow_fullscreen) {
10 NSWindowCollectionBehavior behavior = [window collectionBehavior];
11 if (allow_fullscreen)
12 behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
13 else
14 behavior &= ~NSWindowCollectionBehaviorFullScreenPrimary;
15 [window setCollectionBehavior:behavior];
16 }
17
18 void SetResizableStyleMask(NSWindow* window, bool resizable) {
19 NSUInteger style_mask = [window styleMask];
20 if (resizable)
21 style_mask |= NSResizableWindowMask;
22 else
23 style_mask &= ~NSResizableWindowMask;
24 [window setStyleMask:style_mask];
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698