| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 class X509Certificate; | 27 class X509Certificate; |
| 28 } | 28 } |
| 29 | 29 |
| 30 namespace views { | 30 namespace views { |
| 31 class TableView; | 31 class TableView; |
| 32 class TextButton; | 32 class TextButton; |
| 33 } | 33 } |
| 34 | 34 |
| 35 class CertificateSelectorTableModel; | 35 class CertificateSelectorTableModel; |
| 36 class ConstrainedWindow; | 36 class ConstrainedWindow; |
| 37 class TabContentsWrapper; | 37 class TabContents; |
| 38 typedef TabContents TabContentsWrapper; |
| 38 | 39 |
| 39 class SSLClientCertificateSelector : public SSLClientAuthObserver, | 40 class SSLClientCertificateSelector : public SSLClientAuthObserver, |
| 40 public views::DialogDelegateView, | 41 public views::DialogDelegateView, |
| 41 public views::ButtonListener, | 42 public views::ButtonListener, |
| 42 public views::TableViewObserver { | 43 public views::TableViewObserver { |
| 43 public: | 44 public: |
| 44 SSLClientCertificateSelector( | 45 SSLClientCertificateSelector( |
| 45 TabContentsWrapper* wrapper, | 46 TabContentsWrapper* wrapper, |
| 46 const net::HttpNetworkSession* network_session, | 47 const net::HttpNetworkSession* network_session, |
| 47 net::SSLCertRequestInfo* cert_request_info, | 48 net::SSLCertRequestInfo* cert_request_info, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 85 |
| 85 ConstrainedWindow* window_; | 86 ConstrainedWindow* window_; |
| 86 views::TableView* table_; | 87 views::TableView* table_; |
| 87 views::TextButton* view_cert_button_; | 88 views::TextButton* view_cert_button_; |
| 88 views::View* view_cert_button_container_; | 89 views::View* view_cert_button_container_; |
| 89 | 90 |
| 90 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); | 91 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); |
| 91 }; | 92 }; |
| 92 | 93 |
| 93 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ | 94 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ |
| OLD | NEW |