1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
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/. */
6 
7 #ifndef nsErrorService_h__
8 #define nsErrorService_h__
9 
10 #include "mozilla/Attributes.h"
11 
12 #include "nsIErrorService.h"
13 #include "nsClassHashtable.h"
14 #include "nsHashKeys.h"
15 
16 class nsErrorService final : public nsIErrorService {
17  public:
18   NS_DECL_ISUPPORTS
19   NS_DECL_NSIERRORSERVICE
20 
21   static already_AddRefed<nsIErrorService> GetOrCreate();
22 
23  private:
24   nsErrorService() = default;
25   ~nsErrorService() = default;
26 
27   nsClassHashtable<nsUint32HashKey, nsCString> mErrorStringBundleURLMap;
28 };
29 
30 #endif  // nsErrorService_h__
31