diff options
author | adeshkp <adeshkp@users.noreply.github.com> | 2020-04-24 10:27:10 -0400 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-26 10:22:32 +0200 |
commit | 3a3152d54b38597da40ba60662c4c8be03f35498 (patch) | |
tree | d3fcdd9911607c9434b72df860b0c4c7eac541e9 /dom/plugins/ipc | |
parent | f174801b6431a1387046bff63f15ab5fa1015ee7 (diff) | |
download | UXP-3a3152d54b38597da40ba60662c4c8be03f35498.tar UXP-3a3152d54b38597da40ba60662c4c8be03f35498.tar.gz UXP-3a3152d54b38597da40ba60662c4c8be03f35498.tar.lz UXP-3a3152d54b38597da40ba60662c4c8be03f35498.tar.xz UXP-3a3152d54b38597da40ba60662c4c8be03f35498.zip |
Issue #80 - Include D3DMessageUtils.h in dom/plugins/ipc for Mac build
This should ideally not be needed on Mac but compilation fails due to
sizeof `DxgiAdapterDesc` not known.
Didn't face this issue on Linux though, probably due to a different include
chain which already has this file included somewhere along the way.
Diffstat (limited to 'dom/plugins/ipc')
-rw-r--r-- | dom/plugins/ipc/PluginInstanceParent.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dom/plugins/ipc/PluginInstanceParent.cpp b/dom/plugins/ipc/PluginInstanceParent.cpp index a7d4a6ff5..523dc5c80 100644 --- a/dom/plugins/ipc/PluginInstanceParent.cpp +++ b/dom/plugins/ipc/PluginInstanceParent.cpp @@ -9,6 +9,7 @@ #include "mozilla/BasicEvents.h" #include "mozilla/Preferences.h" +#include "mozilla/D3DMessageUtils.h" #include "D3D11SurfaceHolder.h" #include "PluginInstanceParent.h" #include "BrowserStreamParent.h" |