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

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

Issue 2823038: Refactor SSLClientAuthHandler and certificate selection (Closed)
Patch Set: Rebase the patch Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/browser/tab_contents/tab_contents_ssl_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..bddb37971ef7da162ff7cd7b6be476c48e2b472a
--- /dev/null
+++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
@@ -0,0 +1,28 @@
+// Copyright (c) 2010 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_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
+#define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
+
+#include "chrome/browser/renderer_host/render_view_host_delegate.h"
+
+class SSLClientAuthHandler;
+class TabContents;
+
+class TabContentsSSLHelper : public RenderViewHostDelegate::SSL {
+ public:
+ explicit TabContentsSSLHelper(TabContents* tab_contents);
+ virtual ~TabContentsSSLHelper();
+
+ // RenderViewHostDelegate::SSL implementation:
+ virtual void ShowClientCertificateRequestDialog(
+ scoped_refptr<SSLClientAuthHandler> handler);
+
+ private:
+ TabContents* tab_contents_;
+
+ DISALLOW_COPY_AND_ASSIGN(TabContentsSSLHelper);
+};
+
+#endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
« no previous file with comments | « chrome/browser/tab_contents/tab_contents.cc ('k') | chrome/browser/tab_contents/tab_contents_ssl_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698