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> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "content/browser/ssl/ssl_client_auth_handler.h" | 15 #include "content/browser/ssl/ssl_client_auth_handler.h" |
| 16 #include "ui/views/controls/table/table_view_observer.h" |
16 #include "ui/views/window/dialog_delegate.h" | 17 #include "ui/views/window/dialog_delegate.h" |
17 #include "views/controls/button/button.h" | 18 #include "views/controls/button/button.h" |
18 #include "views/controls/table/table_view_observer.h" | |
19 #include "views/view.h" | 19 #include "views/view.h" |
20 | 20 |
21 // This header file exists only for testing. Chrome should access the | 21 // This header file exists only for testing. Chrome should access the |
22 // certificate selector only through the cross-platform interface | 22 // certificate selector only through the cross-platform interface |
23 // chrome/browser/ssl_client_certificate_selector.h. | 23 // chrome/browser/ssl_client_certificate_selector.h. |
24 | 24 |
25 namespace views { | 25 namespace views { |
26 class TableView; | 26 class TableView; |
27 class TextButton; | 27 class TextButton; |
28 } | 28 } |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 ConstrainedWindow* window_; | 83 ConstrainedWindow* window_; |
84 views::TableView* table_; | 84 views::TableView* table_; |
85 views::TextButton* view_cert_button_; | 85 views::TextButton* view_cert_button_; |
86 views::View* view_cert_button_container_; | 86 views::View* view_cert_button_container_; |
87 | 87 |
88 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); | 88 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); |
89 }; | 89 }; |
90 | 90 |
91 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ | 91 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ |
OLD | NEW |