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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
7
8 #include "chrome/browser/renderer_host/render_view_host_delegate.h"
9
10 class SSLClientAuthHandler;
11 class TabContents;
12
13 class TabContentsSSLHelper : public RenderViewHostDelegate::SSL {
14 public:
15 explicit TabContentsSSLHelper(TabContents* tab_contents);
16 virtual ~TabContentsSSLHelper();
17
18 // RenderViewHostDelegate::SSL implementation:
19 virtual void ShowClientCertificateRequestDialog(
20 scoped_refptr<SSLClientAuthHandler> handler);
21
22 private:
23 TabContents* tab_contents_;
24
25 DISALLOW_COPY_AND_ASSIGN(TabContentsSSLHelper);
26 };
27
28 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_
OLDNEW
« 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