Bug 1925561 - Use a quicker radius calculation for ArcParams. r=aosmond
[gecko.git] / netwerk / base / FuzzySocketControl.h
blob9debbe32e8ad2790c6a1acdb6d2df0543f1e444f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
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 FuzzySocketControl_h__
8 #define FuzzySocketControl_h__
10 #include "nsITLSSocketControl.h"
12 namespace mozilla {
13 namespace net {
15 class FuzzySocketControl final : public nsITLSSocketControl {
16 public:
17 FuzzySocketControl();
19 NS_DECL_THREADSAFE_ISUPPORTS
20 NS_DECL_NSITLSSOCKETCONTROL
22 protected:
23 virtual ~FuzzySocketControl();
24 }; // class FuzzySocketControl
26 } // namespace net
27 } // namespace mozilla
29 #endif // FuzzySocketControl_h__