Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/xpcom/base/nsErrorService.h
Line
Count
Source (jump to first uncovered line)
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
{
18
public:
19
  NS_DECL_ISUPPORTS
20
  NS_DECL_NSIERRORSERVICE
21
22
  nsErrorService()
23
3
  {
24
3
  }
25
26
  static nsresult
27
  Create(nsISupports* aOuter, const nsIID& aIID, void** aInstancePtr);
28
29
private:
30
  ~nsErrorService()
31
0
  {
32
0
  }
33
34
  nsClassHashtable<nsUint32HashKey, nsCString> mErrorStringBundleURLMap;
35
};
36
37
#endif // nsErrorService_h__