blob: c6e4d1be31e2b859a32cb90a5c1427f1937f2288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
#define CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
#pragma once
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/string16.h"
#include "base/memory/ref_counted.h"
#include "content/browser/ssl/ssl_client_auth_handler.h"
#include "content/browser/tab_contents/constrained_window.h"
#include "ui/base/message_box_flags.h"
#include "views/controls/button/button.h"
#include "views/controls/table/table_view_observer.h"
#include "views/view.h"
#include "views/window/dialog_delegate.h"
// This header file exists only for testing. Chrome should access the
// certificate selector only through the cross-platform interface
// chrome/browser/ssl_client_certificate_selector.h.
namespace views {
class TableView;
class TextButton;
}
class CertificateSelectorTableModel;
class TabContentsWrapper;
class SSLClientCertificateSelector : public SSLClientAuthObserver,
public views::DialogDelegateView,
public views::ButtonListener,
public views::TableViewObserver {
public:
SSLClientCertificateSelector(
TabContentsWrapper* wrapper,
net::SSLCertRequestInfo* cert_request_info,
SSLClientAuthHandler* delegate);
virtual ~SSLClientCertificateSelector();
void Init();
net::X509Certificate* GetSelectedCert() const;
// SSLClientAuthObserver implementation:
virtual void OnCertSelectedByNotification() OVERRIDE;
// DialogDelegateView:
virtual bool CanResize() const OVERRIDE;
virtual std::wstring GetWindowTitle() const OVERRIDE;
virtual void DeleteDelegate() OVERRIDE;
virtual bool IsDialogButtonEnabled(
ui::MessageBoxFlags::DialogButton button) const OVERRIDE;
virtual bool Cancel() OVERRIDE;
virtual bool Accept() OVERRIDE;
virtual views::View* GetInitiallyFocusedView() OVERRIDE;
virtual views::View* GetContentsView() OVERRIDE;
virtual views::View* GetExtraView() OVERRIDE;
// views::ButtonListener:
virtual void ButtonPressed(views::Button* sender,
const views::Event& event) OVERRIDE;
// views::TableViewObserver:
virtual void OnSelectionChanged() OVERRIDE;
virtual void OnDoubleClick() OVERRIDE;
private:
void CreateCertTable();
void CreateViewCertButton();
scoped_refptr<net::SSLCertRequestInfo> cert_request_info_;
scoped_refptr<SSLClientAuthHandler> delegate_;
scoped_ptr<CertificateSelectorTableModel> model_;
TabContentsWrapper* wrapper_;
ConstrainedWindow* window_;
views::TableView* table_;
views::TextButton* view_cert_button_;
views::View* view_cert_button_container_;
DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector);
};
#endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_
|