LocalCertService.h 576 B

12345678910111213141516171819202122232425262728
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #ifndef LocalCertService_h
  5. #define LocalCertService_h
  6. #include "nsILocalCertService.h"
  7. namespace mozilla {
  8. class LocalCertService final : public nsILocalCertService
  9. {
  10. public:
  11. NS_DECL_ISUPPORTS
  12. NS_DECL_NSILOCALCERTSERVICE
  13. LocalCertService();
  14. private:
  15. nsresult LoginToKeySlot();
  16. ~LocalCertService();
  17. };
  18. } // namespace mozilla
  19. #endif // LocalCertService_h