| 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 677c7c0d82760a40d0c39ece75b3d80e2c1d7a8b..1f8a0014db38b4ad210bd50cc37b8f81d0dfdb49 100644
|
| --- a/chrome/browser/tab_contents/tab_contents_ssl_helper.h
|
| +++ b/chrome/browser/tab_contents/tab_contents_ssl_helper.h
|
| @@ -14,7 +14,6 @@
|
|
|
| class SSLAddCertHandler;
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| namespace net {
|
| class HttpNetworkSession;
|
| @@ -24,7 +23,7 @@ class X509Certificate;
|
|
|
| class TabContentsSSLHelper {
|
| public:
|
| - explicit TabContentsSSLHelper(TabContentsWrapper* tab_contents);
|
| + explicit TabContentsSSLHelper(TabContents* tab_contents);
|
| virtual ~TabContentsSSLHelper();
|
|
|
| // Called when |handler| encounters an error in verifying a received client
|
| @@ -61,7 +60,7 @@ class TabContentsSSLHelper {
|
| const base::Callback<void(net::X509Certificate*)>& callback);
|
|
|
| private:
|
| - TabContentsWrapper* tab_contents_;
|
| + TabContents* tab_contents_;
|
|
|
| class SSLAddCertData;
|
| std::map<int, linked_ptr<SSLAddCertData> > request_id_to_add_cert_data_;
|
|
|