michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsINSSErrorsService.h" michael@0: michael@0: #include "nsIStringBundle.h" michael@0: #include "nsCOMPtr.h" michael@0: #include "mozilla/Attributes.h" michael@0: michael@0: namespace mozilla { michael@0: namespace psm { michael@0: michael@0: class NSSErrorsService MOZ_FINAL : public nsINSSErrorsService michael@0: { michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSINSSERRORSSERVICE michael@0: michael@0: public: michael@0: nsresult Init(); michael@0: michael@0: private: michael@0: nsCOMPtr mPIPNSSBundle; michael@0: nsCOMPtr mNSSErrorsBundle; michael@0: }; michael@0: michael@0: } // psm michael@0: } // mozilla michael@0: michael@0: #define NS_NSSERRORSSERVICE_CID \ michael@0: { 0x9ef18451, 0xa157, 0x4d17, { 0x81, 0x32, 0x47, 0xaf, 0xef, 0x21, 0x36, 0x89 } }