diff options
Diffstat (limited to 'xpcom/build/XREChildData.h')
-rw-r--r-- | xpcom/build/XREChildData.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xpcom/build/XREChildData.h b/xpcom/build/XREChildData.h index 98a67a8e4..b4cd9895f 100644 --- a/xpcom/build/XREChildData.h +++ b/xpcom/build/XREChildData.h @@ -8,6 +8,12 @@ #include "mozilla/UniquePtr.h" +namespace mozilla { +namespace gmp { +class GMPLoader; +} +} + /** * Data needed to start a child process. */ @@ -16,6 +22,7 @@ struct XREChildData /** * Used to load the GMP binary. */ + mozilla::UniquePtr<mozilla::gmp::GMPLoader> gmpLoader; }; #endif // XREChildData_h |