|
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- |
|
2 * |
|
3 * This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 #ifndef _NSSSLSOCKETPROVIDER_H_ |
|
8 #define _NSSSLSOCKETPROVIDER_H_ |
|
9 |
|
10 #include "nsISocketProvider.h" |
|
11 |
|
12 /* 217d014a-1dd2-11b2-999c-b0c4df79b324 */ |
|
13 #define NS_SSLSOCKETPROVIDER_CID \ |
|
14 { 0x217d014a, 0x1dd2, 0x11b2, {0x99, 0x9c, 0xb0, 0xc4, 0xdf, 0x79, 0xb3, 0x24}} |
|
15 |
|
16 |
|
17 class nsSSLSocketProvider : public nsISocketProvider |
|
18 { |
|
19 public: |
|
20 NS_DECL_THREADSAFE_ISUPPORTS |
|
21 NS_DECL_NSISOCKETPROVIDER |
|
22 |
|
23 // nsSSLSocketProvider methods: |
|
24 nsSSLSocketProvider(); |
|
25 virtual ~nsSSLSocketProvider(); |
|
26 }; |
|
27 |
|
28 #endif /* _NSSSLSOCKETPROVIDER_H_ */ |