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