Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/. */
7 #ifndef _NSSSLSOCKETPROVIDER_H_
8 #define _NSSSLSOCKETPROVIDER_H_
10 #include "nsISocketProvider.h"
12 /* 217d014a-1dd2-11b2-999c-b0c4df79b324 */
13 #define NS_SSLSOCKETPROVIDER_CID \
14 { 0x217d014a, 0x1dd2, 0x11b2, {0x99, 0x9c, 0xb0, 0xc4, 0xdf, 0x79, 0xb3, 0x24}}
17 class nsSSLSocketProvider : public nsISocketProvider
18 {
19 public:
20 NS_DECL_THREADSAFE_ISUPPORTS
21 NS_DECL_NSISOCKETPROVIDER
23 // nsSSLSocketProvider methods:
24 nsSSLSocketProvider();
25 virtual ~nsSSLSocketProvider();
26 };
28 #endif /* _NSSSLSOCKETPROVIDER_H_ */