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: #ifndef _NSRANDOMGENERATOR_H_ michael@0: #define _NSRANDOMGENERATOR_H_ michael@0: michael@0: #include "nsIRandomGenerator.h" michael@0: #include "mozilla/Attributes.h" michael@0: michael@0: #define NS_RANDOMGENERATOR_CID \ michael@0: {0xbe65e2b7, 0xfe46, 0x4e0f, {0x88, 0xe0, 0x4b, 0x38, 0x5d, 0xb4, 0xd6, 0x8a}} michael@0: michael@0: #define NS_RANDOMGENERATOR_CONTRACTID \ michael@0: "@mozilla.org/security/random-generator;1" michael@0: michael@0: class nsRandomGenerator MOZ_FINAL : public nsIRandomGenerator michael@0: { michael@0: public: michael@0: NS_DECL_THREADSAFE_ISUPPORTS michael@0: NS_DECL_NSIRANDOMGENERATOR michael@0: }; michael@0: michael@0: #endif // _NSRANDOMGENERATOR_H_