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

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

Issue 10528002: TabContentsWrapper -> TabContents, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/location_bar/location_bar_view.h ('k') | chrome/browser/ui/views/stubs_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698