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 #include "nsErrorService.h"
11 NS_IMPL_ISUPPORTS(nsErrorService
, nsIErrorService
)
14 nsErrorService::Create(nsISupports
* aOuter
, const nsIID
& aIID
,
17 if (NS_WARN_IF(aOuter
)) {
18 return NS_ERROR_NO_AGGREGATION
;
20 nsRefPtr
<nsErrorService
> serv
= new nsErrorService();
21 return serv
->QueryInterface(aIID
, aInstancePtr
);
25 nsErrorService::RegisterErrorStringBundle(int16_t aErrorModule
,
26 const char* aStringBundleURL
)
28 mErrorStringBundleURLMap
.Put(aErrorModule
, new nsCString(aStringBundleURL
));
33 nsErrorService::UnregisterErrorStringBundle(int16_t aErrorModule
)
35 mErrorStringBundleURLMap
.Remove(aErrorModule
);
40 nsErrorService::GetErrorStringBundle(int16_t aErrorModule
, char** aResult
)
42 nsCString
* bundleURL
= mErrorStringBundleURLMap
.Get(aErrorModule
);
44 return NS_ERROR_FAILURE
;
46 *aResult
= ToNewCString(*bundleURL
);
50 ////////////////////////////////////////////////////////////////////////////////