1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.h"
#include "base/logging.h"
#import "base/mac/foundation_util.h"
#include "chrome/browser/certificate_viewer.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_mac.h"
#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet_controller.h"
@interface SSLCertificateViewerCocoa ()
- (instancetype)initWithCertificate:(net::X509Certificate*)certificate
forWebContents:(content::WebContents*)webContents;
- (void)onConstrainedWindowClosed;
@end
namespace {
class SSLCertificateViewerCocoaBridge : public ConstrainedWindowMacDelegate {
public:
explicit SSLCertificateViewerCocoaBridge(
SSLCertificateViewerCocoa* controller)
: controller_(controller) {}
// ConstrainedWindowMacDelegate:
void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override {
// |onConstrainedWindowClosed| will delete the sheet which might still be
// in use higher up the call stack. Wait for the next cycle of the event
// loop to call this function.
[controller_ performSelector:@selector(onConstrainedWindowClosed)
withObject:nil
afterDelay:0];
}
private:
SSLCertificateViewerCocoa* controller_; // Weak. Owns this.
DISALLOW_COPY_AND_ASSIGN(SSLCertificateViewerCocoaBridge);
};
} // namespace
@implementation SSLCertificateViewerCocoa {
std::unique_ptr<SSLCertificateViewerCocoaBridge> observer_;
std::unique_ptr<ConstrainedWindowMac> constrainedWindow_;
base::scoped_nsobject<NSWindow> overlayWindow_;
// A copy of the sheet's frame. Used to restore on show.
NSRect oldSheetFrame_;
BOOL closePending_;
// A copy of the sheet's |autoresizesSubviews| flag to restore on show.
BOOL oldResizesSubviews_;
}
- (instancetype)initWithCertificate:(net::X509Certificate*)certificate
forWebContents:(content::WebContents*)webContents {
if ((self = [super initWithCertificate:certificate
forWebContents:webContents])) {
observer_.reset(new SSLCertificateViewerCocoaBridge(self));
constrainedWindow_ =
CreateAndShowWebModalDialogMac(observer_.get(), webContents, self);
}
return self;
}
- (void)onConstrainedWindowClosed {
[self releaseSheetWindow];
constrainedWindow_.reset();
[self release];
}
// SSLCertificateViewerMac overrides:
- (void)sheetDidEnd:(NSWindow*)parent
returnCode:(NSInteger)returnCode
context:(void*)context {
if (!closePending_)
constrainedWindow_->CloseWebContentsModalDialog();
}
// ConstrainedWindowSheet protocol implementation.
- (void)showSheetForWindow:(NSWindow*)window {
overlayWindow_.reset([window retain]);
[self showCertificateSheet:window];
}
- (void)closeSheetWithAnimation:(BOOL)withAnimation {
closePending_ = YES;
overlayWindow_.reset();
[self closeCertificateSheet];
}
- (void)hideSheet {
NSWindow* sheetWindow = [overlayWindow_ attachedSheet];
[sheetWindow setAlphaValue:0.0];
[sheetWindow setIgnoresMouseEvents:YES];
oldResizesSubviews_ = [[sheetWindow contentView] autoresizesSubviews];
[[sheetWindow contentView] setAutoresizesSubviews:NO];
}
- (void)unhideSheet {
NSWindow* sheetWindow = [overlayWindow_ attachedSheet];
[sheetWindow setIgnoresMouseEvents:NO];
[[sheetWindow contentView] setAutoresizesSubviews:oldResizesSubviews_];
[[overlayWindow_ attachedSheet] setAlphaValue:1.0];
}
- (void)pulseSheet {
// NOOP
}
- (void)makeSheetKeyAndOrderFront {
[[overlayWindow_ attachedSheet] makeKeyAndOrderFront:nil];
}
- (void)updateSheetPosition {
// NOOP
}
- (void)resizeWithNewSize:(NSSize)preferredSize {
// NOOP
}
- (NSWindow*)sheetWindow {
return [self certificatePanel];
}
@end
void ShowCertificateViewer(content::WebContents* web_contents,
gfx::NativeWindow parent,
net::X509Certificate* cert) {
// SSLCertificateViewerCocoa will manage its own lifetime and will release
// itself when the dialog is closed.
// See -[SSLCertificateViewerCocoa onConstrainedWindowClosed].
[[SSLCertificateViewerCocoa alloc] initWithCertificate:cert
forWebContents:web_contents];
}
|