tor-browser

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

nsHttpAuthManager.h (915B)


      1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      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 nsHttpAuthManager_h__
      7 #define nsHttpAuthManager_h__
      8 
      9 #include "nsIHttpAuthManager.h"
     10 
     11 namespace mozilla {
     12 namespace net {
     13 
     14 class nsHttpAuthCache;
     15 
     16 class nsHttpAuthManager : public nsIHttpAuthManager {
     17 public:
     18  NS_DECL_ISUPPORTS
     19  NS_DECL_NSIHTTPAUTHMANAGER
     20 
     21  static already_AddRefed<nsIHttpAuthCache> GetHttpAuthCacheSingleton();
     22 
     23  nsHttpAuthManager() = default;
     24  [[nodiscard]] nsresult Init();
     25 
     26 protected:
     27  virtual ~nsHttpAuthManager() = default;
     28 
     29  RefPtr<nsHttpAuthCache> mAuthCache;
     30  RefPtr<nsHttpAuthCache> mPrivateAuthCache;
     31 };
     32 
     33 }  // namespace net
     34 }  // namespace mozilla
     35 
     36 #endif  // nsHttpAuthManager_h__