| Index: chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h
|
| diff --git a/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h b/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h
|
| index 7f125c7b25ec331dd7c487eb550ea4e1af402d8e..0413e5f6d049687836639ce05c47884697395fc5 100644
|
| --- a/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h
|
| +++ b/chrome/browser/ui/cocoa/ssl_client_certificate_selector_cocoa.h
|
| @@ -36,15 +36,13 @@ class SSLClientAuthObserverCocoaBridge;
|
| // The list of identities offered to the user.
|
| base::ScopedCFTypeRef<CFMutableArrayRef> identities_;
|
| // The corresponding list of certificates.
|
| - std::vector<scoped_refptr<net::X509Certificate> > certificates_;
|
| + std::vector<scoped_refptr<net::X509Certificate>> certificates_;
|
| // A C++ object to bridge SSLClientAuthObserver notifications to us.
|
| std::unique_ptr<SSLClientAuthObserverCocoaBridge> observer_;
|
| base::scoped_nsobject<SFChooseIdentityPanel> panel_;
|
| std::unique_ptr<ConstrainedWindowMac> constrainedWindow_;
|
| base::scoped_nsobject<NSWindow> overlayWindow_;
|
| BOOL closePending_;
|
| - // A copy of the sheet's frame used to restore on show.
|
| - NSRect oldSheetFrame_;
|
| // A copy of the sheet's |autoresizesSubviews| flag to restore on show.
|
| BOOL oldResizesSubviews_;
|
| // True if the user dismissed the dialog directly, either via the OK (continue
|
|
|