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

Side by Side Diff: chrome/browser/ui/cocoa/constrained_window/constrained_window_web_dialog_sheet.mm

Issue 817273003: [Mac] Make ConstrainedWebDialog resize with parent window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 2014 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 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_web_dialo g_sheet.h"
6
7 #include "ui/gfx/size.h"
8 #include "ui/web_dialogs/web_dialog_delegate.h"
9
10 @implementation WebDialogConstrainedWindowSheet
11
12 - (id)initWithCustomWindow:(NSWindow*)customWindow
13 webDialogDelegate:(ui::WebDialogDelegate*)delegate {
14 if (self = [super initWithCustomWindow:customWindow]) {
15 web_dialog_delegate_ = delegate;
16 }
17
18 return self;
19 }
20
21 - (void)updateSheetPosition {
22 if (web_dialog_delegate_) {
23 gfx::Size size;
24 web_dialog_delegate_->GetDialogSize(&size);
25 [customWindow_ setContentSize:NSMakeSize(size.width(), size.height())];
26 }
27 [super updateSheetPosition];
28 }
29
30 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/constrained_window/constrained_window_web_dialog_sheet.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698