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

Unified Diff: chrome/browser/tab_contents/tab_contents_ssl_helper.h

Issue 8745020: Don't select a client certs for TabContents with no TabContentsWrapper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove bad rebase change Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/tab_contents/tab_contents_ssl_helper.h
diff --git a/chrome/browser/tab_contents/tab_contents_ssl_helper.h b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
index ea6b272514d26090c49b8539a22b11d400a26285..00c43d5cdf5c113eeb77962301bbad8bb898d253 100644
--- a/chrome/browser/tab_contents/tab_contents_ssl_helper.h
+++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
@@ -21,9 +21,6 @@ class TabContentsSSLHelper {
explicit TabContentsSSLHelper(TabContentsWrapper* tab_contents);
virtual ~TabContentsSSLHelper();
- // Selects the client certificate to submit and returns it to the |handler|.
- void SelectClientCertificate(scoped_refptr<SSLClientAuthHandler> handler);
-
// Called when |handler| encounters an error in verifying a received client
// certificate. Note that, because CAs often will not send us intermediate
// certificates, the verification we can do is minimal: we verify the
@@ -50,12 +47,12 @@ class TabContentsSSLHelper {
void OnAddClientCertificateFinished(
scoped_refptr<SSLAddCertHandler> handler);
- private:
// Displays a dialog for selecting a client certificate and returns it to
// the |handler|.
void ShowClientCertificateRequestDialog(
scoped_refptr<SSLClientAuthHandler> handler);
+ private:
TabContentsWrapper* tab_contents_;
class SSLAddCertData;

Powered by Google App Engine
This is Rietveld 408576698