Backed out changeset f53842753805 (bug 1804872) for causing reftest failures on 15535...
[gecko.git] / security / manager / ssl / nsSSLSocketProvider.h
blob690c911bd5a934ca172c592005b2c8d0a4bdb0bc
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 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 { \
15 0x217d014a, 0x1dd2, 0x11b2, { \
16 0x99, 0x9c, 0xb0, 0xc4, 0xdf, 0x79, 0xb3, 0x24 \
17 } \
20 class nsSSLSocketProvider : public nsISocketProvider {
21 public:
22 NS_DECL_THREADSAFE_ISUPPORTS
23 NS_DECL_NSISOCKETPROVIDER
25 // nsSSLSocketProvider methods:
26 nsSSLSocketProvider();
28 protected:
29 virtual ~nsSSLSocketProvider();
32 #endif /* _NSSSLSOCKETPROVIDER_H_ */