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

Side by Side Diff: chrome/browser/ui/views/ssl_client_certificate_selector.h

Issue 511163002: Net-related fixups for scoped_refptr conversion operator cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix naming to match Created 6 years, 3 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 #ifndef CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
6 #define CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 6 #define CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 23 matching lines...) Expand all
34 class CertificateSelectorTableModel; 34 class CertificateSelectorTableModel;
35 35
36 class SSLClientCertificateSelector : public SSLClientAuthObserver, 36 class SSLClientCertificateSelector : public SSLClientAuthObserver,
37 public views::DialogDelegateView, 37 public views::DialogDelegateView,
38 public views::ButtonListener, 38 public views::ButtonListener,
39 public views::TableViewObserver { 39 public views::TableViewObserver {
40 public: 40 public:
41 SSLClientCertificateSelector( 41 SSLClientCertificateSelector(
42 content::WebContents* web_contents, 42 content::WebContents* web_contents,
43 const net::HttpNetworkSession* network_session, 43 const net::HttpNetworkSession* network_session,
44 net::SSLCertRequestInfo* cert_request_info, 44 const scoped_refptr<net::SSLCertRequestInfo>& cert_request_info,
45 const chrome::SelectCertificateCallback& callback); 45 const chrome::SelectCertificateCallback& callback);
46 virtual ~SSLClientCertificateSelector(); 46 virtual ~SSLClientCertificateSelector();
47 47
48 void Init(); 48 void Init();
49 49
50 net::X509Certificate* GetSelectedCert() const; 50 net::X509Certificate* GetSelectedCert() const;
51 51
52 // SSLClientAuthObserver implementation: 52 // SSLClientAuthObserver implementation:
53 virtual void OnCertSelectedByNotification() OVERRIDE; 53 virtual void OnCertSelectedByNotification() OVERRIDE;
54 54
(...skipping 26 matching lines...) Expand all
81 81
82 content::WebContents* web_contents_; 82 content::WebContents* web_contents_;
83 83
84 views::TableView* table_; 84 views::TableView* table_;
85 views::LabelButton* view_cert_button_; 85 views::LabelButton* view_cert_button_;
86 86
87 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); 87 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector);
88 }; 88 };
89 89
90 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ 90 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_client_auth_requestor_mock.cc ('k') | chrome/browser/ui/views/ssl_client_certificate_selector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698