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

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

Issue 1446623003: [Reland] Enable AutoResize for Constrained Web Dialogs for Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 10 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet_con troller.h" 5 #import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet_con troller.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" 10 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h"
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 - (void)pulseSheet { 53 - (void)pulseSheet {
54 } 54 }
55 55
56 - (void)makeSheetKeyAndOrderFront { 56 - (void)makeSheetKeyAndOrderFront {
57 } 57 }
58 58
59 - (void)updateSheetPosition { 59 - (void)updateSheetPosition {
60 } 60 }
61 61
62 - (void)resizeWithNewSize:(NSSize)size {
63 // NOOP
64 }
65
62 - (NSWindow*)sheetWindow { 66 - (NSWindow*)sheetWindow {
63 return [alert_ window]; 67 return [alert_ window];
64 } 68 }
65 69
66 - (void)alertDidEnd:(NSAlert *)alert 70 - (void)alertDidEnd:(NSAlert *)alert
67 returnCode:(NSInteger)returnCode 71 returnCode:(NSInteger)returnCode
68 ctxInfo:(void *)contextInfo { 72 ctxInfo:(void *)contextInfo {
69 returnCode_ = returnCode; 73 returnCode_ = returnCode;
70 } 74 }
71 75
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 [system_sheet setAlert:alert]; 310 [system_sheet setAlert:alert];
307 311
308 EXPECT_FALSE([[alert window] isVisible]); 312 EXPECT_FALSE([[alert window] isVisible]);
309 [controller_ showSheet:system_sheet forParentView:active_tab_view_]; 313 [controller_ showSheet:system_sheet forParentView:active_tab_view_];
310 EXPECT_TRUE([[alert window] isVisible]); 314 EXPECT_TRUE([[alert window] isVisible]);
311 315
312 [controller_ closeSheet:system_sheet]; 316 [controller_ closeSheet:system_sheet];
313 EXPECT_FALSE([[alert window] isVisible]); 317 EXPECT_FALSE([[alert window] isVisible]);
314 EXPECT_EQ(kSystemSheetReturnCode, [system_sheet returnCode]); 318 EXPECT_EQ(kSystemSheetReturnCode, [system_sheet returnCode]);
315 } 319 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698