Index: chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.mm |
diff --git a/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.mm b/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.mm |
index ff46f9c14060819a315b567f48fdab32a0ed448f..9d471b923de6fe2903f327656efcdfd7df25dc2e 100644 |
--- a/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.mm |
+++ b/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.mm |
@@ -49,13 +49,12 @@ class SSLClientAuthObserverCocoaBridge : public SSLClientAuthObserver, |
} |
// SSLClientAuthObserver implementation: |
- virtual void OnCertSelectedByNotification() override { |
+ void OnCertSelectedByNotification() override { |
[controller_ closeWebContentsModalDialog]; |
} |
// ConstrainedWindowMacDelegate implementation: |
- virtual void OnConstrainedWindowClosed( |
- ConstrainedWindowMac* window) override { |
+ void OnConstrainedWindowClosed(ConstrainedWindowMac* window) override { |
// |onConstrainedWindowClosed| will delete the sheet which might be still |
// in use higher up the call stack. Wait for the next cycle of the event |
// loop to call this function. |