Bug 1690340 - Part 4: Insert the "Page Source" before the "Extensions for Developers...
[gecko.git] / xpcom / base / nsErrorService.h
blob3b35e6192df63c2f4f4344eb75d96d539cc568f6
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/. */
7 #ifndef nsErrorService_h__
8 #define nsErrorService_h__
10 #include "mozilla/Attributes.h"
12 #include "nsIErrorService.h"
13 #include "nsClassHashtable.h"
14 #include "nsHashKeys.h"
16 class nsErrorService final : public nsIErrorService {
17 public:
18 NS_DECL_ISUPPORTS
19 NS_DECL_NSIERRORSERVICE
21 static already_AddRefed<nsIErrorService> GetOrCreate();
23 private:
24 nsErrorService() = default;
25 ~nsErrorService() = default;
27 nsClassHashtable<nsUint32HashKey, nsCString> mErrorStringBundleURLMap;
30 #endif // nsErrorService_h__