OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <map> | 8 #include <map> |
10 | 9 |
11 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
12 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
13 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
14 | 13 |
15 class SSLAddCertHandler; | 14 class SSLAddCertHandler; |
16 class TabContents; | 15 class TabContents; |
17 | 16 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 63 |
65 class SSLAddCertData; | 64 class SSLAddCertData; |
66 std::map<int, linked_ptr<SSLAddCertData> > request_id_to_add_cert_data_; | 65 std::map<int, linked_ptr<SSLAddCertData> > request_id_to_add_cert_data_; |
67 | 66 |
68 SSLAddCertData* GetAddCertData(SSLAddCertHandler* handler); | 67 SSLAddCertData* GetAddCertData(SSLAddCertHandler* handler); |
69 | 68 |
70 DISALLOW_COPY_AND_ASSIGN(TabContentsSSLHelper); | 69 DISALLOW_COPY_AND_ASSIGN(TabContentsSSLHelper); |
71 }; | 70 }; |
72 | 71 |
73 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ | 72 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_SSL_HELPER_H_ |
OLD | NEW |