1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/manager/ssl/src/nsSSLSocketProvider.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,28 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.5 + * 1.6 + * This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef _NSSSLSOCKETPROVIDER_H_ 1.11 +#define _NSSSLSOCKETPROVIDER_H_ 1.12 + 1.13 +#include "nsISocketProvider.h" 1.14 + 1.15 +/* 217d014a-1dd2-11b2-999c-b0c4df79b324 */ 1.16 +#define NS_SSLSOCKETPROVIDER_CID \ 1.17 +{ 0x217d014a, 0x1dd2, 0x11b2, {0x99, 0x9c, 0xb0, 0xc4, 0xdf, 0x79, 0xb3, 0x24}} 1.18 + 1.19 + 1.20 +class nsSSLSocketProvider : public nsISocketProvider 1.21 +{ 1.22 +public: 1.23 + NS_DECL_THREADSAFE_ISUPPORTS 1.24 + NS_DECL_NSISOCKETPROVIDER 1.25 + 1.26 + // nsSSLSocketProvider methods: 1.27 + nsSSLSocketProvider(); 1.28 + virtual ~nsSSLSocketProvider(); 1.29 +}; 1.30 + 1.31 +#endif /* _NSSSLSOCKETPROVIDER_H_ */