tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ProxyAutoConfigParent.h (808B)


      1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this
      4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 #ifndef ProxyAutoConfigParent_h__
      7 #define ProxyAutoConfigParent_h__
      8 
      9 #include "mozilla/net/PProxyAutoConfigParent.h"
     10 
     11 namespace mozilla {
     12 namespace net {
     13 
     14 class ProxyAutoConfigParent final : public PProxyAutoConfigParent {
     15 public:
     16  NS_INLINE_DECL_THREADSAFE_REFCOUNTING(ProxyAutoConfigParent, final)
     17 
     18  ProxyAutoConfigParent();
     19  void Init(Endpoint<PProxyAutoConfigParent>&& aEndpoint);
     20 
     21 private:
     22  virtual ~ProxyAutoConfigParent();
     23 };
     24 
     25 }  // namespace net
     26 }  // namespace mozilla
     27 
     28 #endif  // ProxyAutoConfigParent_h__