2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-08-22 18:40:41 +04:00
|
|
|
|
2003-09-12 00:32:33 +04:00
|
|
|
#ifndef nsSocketProviderService_h__
|
|
|
|
#define nsSocketProviderService_h__
|
1999-08-22 18:40:41 +04:00
|
|
|
|
|
|
|
#include "nsISocketProviderService.h"
|
|
|
|
|
|
|
|
class nsSocketProviderService : public nsISocketProviderService
|
|
|
|
{
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~nsSocketProviderService() {}
|
|
|
|
|
1999-08-22 18:40:41 +04:00
|
|
|
public:
|
2013-07-19 06:24:13 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-08-24 10:50:41 +04:00
|
|
|
NS_DECL_NSISOCKETPROVIDERSERVICE
|
1999-08-22 18:40:41 +04:00
|
|
|
|
2003-09-12 00:32:33 +04:00
|
|
|
nsSocketProviderService() {}
|
1999-08-22 18:40:41 +04:00
|
|
|
|
2010-06-10 22:11:40 +04:00
|
|
|
static nsresult Create(nsISupports *, REFNSIID aIID, void **aResult);
|
1999-08-22 18:40:41 +04:00
|
|
|
};
|
|
|
|
|
2003-09-12 00:32:33 +04:00
|
|
|
#endif /* nsSocketProviderService_h__ */
|