OLD | NEW |
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 // SSLClientAuthObserver implementation: | 54 // SSLClientAuthObserver implementation: |
55 virtual void OnCertSelectedByNotification() OVERRIDE; | 55 virtual void OnCertSelectedByNotification() OVERRIDE; |
56 | 56 |
57 // DialogDelegateView: | 57 // DialogDelegateView: |
58 virtual bool CanResize() const OVERRIDE; | 58 virtual bool CanResize() const OVERRIDE; |
59 virtual base::string16 GetWindowTitle() const OVERRIDE; | 59 virtual base::string16 GetWindowTitle() const OVERRIDE; |
60 virtual void DeleteDelegate() OVERRIDE; | 60 virtual void DeleteDelegate() OVERRIDE; |
61 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; | 61 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE; |
62 virtual bool Cancel() OVERRIDE; | 62 virtual bool Cancel() OVERRIDE; |
63 virtual bool Accept() OVERRIDE; | 63 virtual bool Accept() OVERRIDE; |
64 virtual views::NonClientFrameView* CreateNonClientFrameView( | |
65 views::Widget* widget) OVERRIDE; | |
66 virtual views::View* GetInitiallyFocusedView() OVERRIDE; | 64 virtual views::View* GetInitiallyFocusedView() OVERRIDE; |
67 virtual views::View* CreateExtraView() OVERRIDE; | 65 virtual views::View* CreateExtraView() OVERRIDE; |
68 virtual ui::ModalType GetModalType() const OVERRIDE; | 66 virtual ui::ModalType GetModalType() const OVERRIDE; |
69 | 67 |
70 // views::ButtonListener: | 68 // views::ButtonListener: |
71 virtual void ButtonPressed(views::Button* sender, | 69 virtual void ButtonPressed(views::Button* sender, |
72 const ui::Event& event) OVERRIDE; | 70 const ui::Event& event) OVERRIDE; |
73 | 71 |
74 // views::TableViewObserver: | 72 // views::TableViewObserver: |
75 virtual void OnSelectionChanged() OVERRIDE; | 73 virtual void OnSelectionChanged() OVERRIDE; |
(...skipping 10 matching lines...) Expand all Loading... |
86 content::WebContents* web_contents_; | 84 content::WebContents* web_contents_; |
87 | 85 |
88 views::Widget* window_; | 86 views::Widget* window_; |
89 views::TableView* table_; | 87 views::TableView* table_; |
90 views::LabelButton* view_cert_button_; | 88 views::LabelButton* view_cert_button_; |
91 | 89 |
92 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); | 90 DISALLOW_COPY_AND_ASSIGN(SSLClientCertificateSelector); |
93 }; | 91 }; |
94 | 92 |
95 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ | 93 #endif // CHROME_BROWSER_UI_VIEWS_SSL_CLIENT_CERTIFICATE_SELECTOR_H_ |
OLD | NEW |