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

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

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 #ifndef CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_WEB_DIALOG _SHEET_H_
6 #define CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_WEB_DIALOG _SHEET_H_
7
8 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_custom_sh eet.h"
9
10 namespace ui {
11 class WebDialogDelegate;
12 }
13
14 // Represents a custom sheet for web dialog.
15 @interface WebDialogConstrainedWindowSheet : CustomConstrainedWindowSheet {
16 @private
17 ui::WebDialogDelegate* web_dialog_delegate_; // Weak.
18 }
19
20 - (id)initWithCustomWindow:(NSWindow*)customWindow
21 webDialogDelegate:(ui::WebDialogDelegate*)delegate;
22
23 @end
24
25 #endif // CHROME_BROWSER_UI_COCOA_CONSTRAINED_WINDOW_CONSTRAINED_WINDOW_WEB_DIA LOG_SHEET_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698