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

Side by Side Diff: chrome/browser/ui/views/apps/native_app_window_frame_view_mac.mm

Issue 1023083002: [MacViews] Implement size constraints for app windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update ui/gfx/BUILD.gn Created 5 years, 8 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/views/apps/native_app_window_frame_view_mac.h"
6
7 #import <Cocoa/Cocoa.h>
8
9 #import "ui/gfx/mac/coordinate_conversion.h"
10 #include "ui/views/widget/widget.h"
11
12 NativeAppWindowFrameViewMac::NativeAppWindowFrameViewMac(views::Widget* frame)
13 : views::NativeFrameView(frame) {
14 }
15
16 NativeAppWindowFrameViewMac::~NativeAppWindowFrameViewMac() {
17 }
18
19 gfx::Rect NativeAppWindowFrameViewMac::GetWindowBoundsForClientBounds(
20 const gfx::Rect& client_bounds) const {
21 NSWindow* ns_window = GetWidget()->GetNativeWindow();
22 gfx::Rect window_bounds = gfx::ScreenRectFromNSRect([ns_window
23 frameRectForContentRect:gfx::ScreenRectToNSRect(client_bounds)]);
24 // Enforce minimum size (1, 1) in case that |client_bounds| is passed with
25 // empty size.
26 if (window_bounds.IsEmpty())
27 window_bounds.set_size(gfx::Size(1, 1));
28 return window_bounds;
29 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/apps/native_app_window_frame_view_mac.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698