Backed out changeset 4c2bc5ae8f95 (bug 945562) for device image bustage.
[gecko.git] / xpcom / ds / nsAtomService.cpp
blobe336762e34d1f95876acbcaef857e9a65f8a822f
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "nsAtomService.h"
7 #include "nsIAtom.h"
9 NS_IMPL_ISUPPORTS1(nsAtomService, nsIAtomService)
11 nsAtomService::nsAtomService()
15 nsresult
16 nsAtomService::GetAtom(const nsAString& aString, nsIAtom ** aResult)
18 *aResult = NS_NewAtom(aString).get();
20 if (!*aResult)
21 return NS_ERROR_OUT_OF_MEMORY;
23 return NS_OK;
26 nsresult
27 nsAtomService::GetPermanentAtom(const nsAString& aString, nsIAtom ** aResult)
29 *aResult = NS_NewPermanentAtom(aString);
31 if (!*aResult)
32 return NS_ERROR_OUT_OF_MEMORY;
34 return NS_OK;
37 NS_IMETHODIMP
38 nsAtomService::GetAtomUTF8(const char *aValue, nsIAtom* *aResult)
40 *aResult = NS_NewAtom(aValue).get();
42 if (!*aResult)
43 return NS_ERROR_OUT_OF_MEMORY;
45 return NS_OK;
48 NS_IMETHODIMP
49 nsAtomService::GetPermanentAtomUTF8(const char *aValue, nsIAtom* *aResult)
51 *aResult = NS_NewPermanentAtom(NS_ConvertUTF8toUTF16(aValue));
53 if (!*aResult)
54 return NS_ERROR_OUT_OF_MEMORY;
56 return NS_OK;