CPOWManagerGetter.h 660 B

123456789101112131415161718192021222324252627
  1. /* -*- Mode: C++; tab-width: 8; 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 file,
  4. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef mozilla_dom_CPOWManagerGetter_h
  6. #define mozilla_dom_CPOWManagerGetter_h
  7. namespace mozilla {
  8. namespace jsipc {
  9. class CPOWManager;
  10. } /* namespace jsipc */
  11. namespace dom {
  12. class CPOWManagerGetter
  13. {
  14. public:
  15. virtual mozilla::jsipc::CPOWManager* GetCPOWManager() = 0;
  16. };
  17. } /* namespace dom */
  18. } /* namespace mozilla */
  19. #endif /* mozilla_dom_CPOWManagerGetter_h */