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

Unified Diff: chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.mm

Issue 1779383002: MacViews: Remove constrained window dependencies for certificate viewer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix positioning after resize from top, don't allow interaction with tab WebContents while certifica… Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.mm b/chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.mm
new file mode 100644
index 0000000000000000000000000000000000000000..ab0a9657d6ec80e32e17f28564ea0cb73c95a117
--- /dev/null
+++ b/chrome/browser/ui/cocoa/certificate_viewer_mac_cocoa.mm
@@ -0,0 +1,71 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
tapted 2016/05/04 03:29:24 (c) 2012 -> 2016? Otherwise, can you play with `gi
Patti Lor 2016/05/11 01:35:18 Done.
+// 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"
+#include "base/mac/foundation_util.h"
tapted 2016/05/04 03:29:24 nit: import
Patti Lor 2016/05/11 01:35:18 Done.
+#include "chrome/browser/certificate_viewer.h"
+#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet.h"
+#import "chrome/browser/ui/cocoa/constrained_window/constrained_window_sheet_controller.h"
+
+class SSLCertificateViewerCocoaBridge : public ConstrainedWindowMacDelegate {
+ public:
+ explicit SSLCertificateViewerCocoaBridge(SSLCertificateViewerCocoa *
tapted 2016/05/04 03:29:24 no space between SSLCertificateViewerCocoa and "*"
Patti Lor 2016/05/11 01:35:18 Done.
+ controller)
+ : controller_(controller) {
+ }
+
+ virtual ~SSLCertificateViewerCocoaBridge() {}
+
+ // ConstrainedWindowMacDelegate implementation:
+ void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override {
+ // |onConstrainedWindowClosed| will delete the sheet which might be still
tapted 2016/05/04 03:29:24 nit: still -> still be
Patti Lor 2016/05/11 01:35:18 Done.
+ // 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
tapted 2016/05/04 03:29:24 nit: // Weak. Owns this.
Patti Lor 2016/05/11 01:35:18 Done.
+
+ DISALLOW_COPY_AND_ASSIGN(SSLCertificateViewerCocoaBridge);
+};
+
+@implementation SSLCertificateViewerCocoa
+
+- (void)sheetDidEnd:(NSWindow*)parent
+ returnCode:(NSInteger)returnCode
+ context:(void*)context {
+ if (!closePending_)
+ constrainedWindow_->CloseWebContentsModalDialog();
+}
+
+- (void)displayForWebContents:(content::WebContents*)webContents {
+ [super displayForWebContents:webContents];
+
+ constrainedWindow_ =
+ CreateAndShowWebModalDialogMac(observer_.get(), webContents, self);
+}
+
+- (void)onConstrainedWindowClosed {
+ panel_.reset();
+ constrainedWindow_.reset();
+ [self release];
+}
+
+@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* viewer =
+ [[SSLCertificateViewerCocoa alloc] initWithCertificate:cert];
+ [viewer displayForWebContents:web_contents];
+}

Powered by Google App Engine
This is Rietveld 408576698