XREChildData.h 626 B

1234567891011121314151617181920212223242526272829
  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
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef XREChildData_h
  6. #define XREChildData_h
  7. #include "mozilla/UniquePtr.h"
  8. namespace mozilla {
  9. namespace gmp {
  10. class GMPLoader;
  11. }
  12. }
  13. /**
  14. * Data needed to start a child process.
  15. */
  16. struct XREChildData
  17. {
  18. /**
  19. * Used to load the GMP binary.
  20. */
  21. mozilla::UniquePtr<mozilla::gmp::GMPLoader> gmpLoader;
  22. };
  23. #endif // XREChildData_h