Bumping manifests a=b2g-bump
[gecko.git] / xpcom / base / nsErrorService.cpp
blob5ee93c31bc3360d3bfb174281286b9ff18cba6fb
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"
8 #include "nsCRTGlue.h"
9 #include "nsAutoPtr.h"
11 NS_IMPL_ISUPPORTS(nsErrorService, nsIErrorService)
13 nsresult
14 nsErrorService::Create(nsISupports* aOuter, const nsIID& aIID,
15 void** aInstancePtr)
17 if (NS_WARN_IF(aOuter)) {
18 return NS_ERROR_NO_AGGREGATION;
20 nsRefPtr<nsErrorService> serv = new nsErrorService();
21 return serv->QueryInterface(aIID, aInstancePtr);
24 NS_IMETHODIMP
25 nsErrorService::RegisterErrorStringBundle(int16_t aErrorModule,
26 const char* aStringBundleURL)
28 mErrorStringBundleURLMap.Put(aErrorModule, new nsCString(aStringBundleURL));
29 return NS_OK;
32 NS_IMETHODIMP
33 nsErrorService::UnregisterErrorStringBundle(int16_t aErrorModule)
35 mErrorStringBundleURLMap.Remove(aErrorModule);
36 return NS_OK;
39 NS_IMETHODIMP
40 nsErrorService::GetErrorStringBundle(int16_t aErrorModule, char** aResult)
42 nsCString* bundleURL = mErrorStringBundleURLMap.Get(aErrorModule);
43 if (!bundleURL) {
44 return NS_ERROR_FAILURE;
46 *aResult = ToNewCString(*bundleURL);
47 return NS_OK;
50 ////////////////////////////////////////////////////////////////////////////////