Backed out 4 changesets (bug 993282) for bringing back bug 1008357 on a CLOSED TREE.
[gecko.git] / xpcom / base / nsErrorService.cpp
blobfbdad15775266186e00eaa669886ea36e25887c4
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, void** aInstancePtr)
16 if (NS_WARN_IF(aOuter)) {
17 return NS_ERROR_NO_AGGREGATION;
19 nsRefPtr<nsErrorService> serv = new nsErrorService();
20 return serv->QueryInterface(aIID, aInstancePtr);
23 NS_IMETHODIMP
24 nsErrorService::RegisterErrorStringBundle(int16_t aErrorModule, const char* aStringBundleURL)
26 mErrorStringBundleURLMap.Put(aErrorModule, new nsCString(aStringBundleURL));
27 return NS_OK;
30 NS_IMETHODIMP
31 nsErrorService::UnregisterErrorStringBundle(int16_t aErrorModule)
33 mErrorStringBundleURLMap.Remove(aErrorModule);
34 return NS_OK;
37 NS_IMETHODIMP
38 nsErrorService::GetErrorStringBundle(int16_t aErrorModule, char** aResult)
40 nsCString* bundleURL = mErrorStringBundleURLMap.Get(aErrorModule);
41 *aResult = ToNewCString(*bundleURL);
42 return NS_OK;
45 ////////////////////////////////////////////////////////////////////////////////