diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-22 22:44:01 -0500 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 12:52:59 +0200 |
commit | 57383be95da385b336d988ff713b8e3bf097ce0f (patch) | |
tree | 06392b9c4ca8701a49fe1976f25d10bc4e1582bd /ipc/contentproc | |
parent | 6ef03f136bac6d677d67d1bcc4e110e891e7c4ca (diff) | |
download | UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.gz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.lz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.tar.xz UXP-57383be95da385b336d988ff713b8e3bf097ce0f.zip |
Issue #1053 - Remove android support from ipc except for ipc/chromium
This does not include android in the imported chromium code as specific research needs done on defines and logic.
Diffstat (limited to 'ipc/contentproc')
-rw-r--r-- | ipc/contentproc/plugin-container.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/contentproc/plugin-container.cpp b/ipc/contentproc/plugin-container.cpp index 2fb9bd4f5..0e59e9d7a 100644 --- a/ipc/contentproc/plugin-container.cpp +++ b/ipc/contentproc/plugin-container.cpp @@ -50,7 +50,7 @@ content_process_main(int argc, char* argv[]) SetDllDirectoryW(L""); } #endif -#if !defined(MOZ_WIDGET_ANDROID) && defined(MOZ_PLUGIN_CONTAINER) +#ifdef MOZ_PLUGIN_CONTAINER // On desktop, the GMPLoader lives in plugin-container, so that its // code can be covered by an EME/GMP vendor's voucher. nsAutoPtr<mozilla::gmp::SandboxStarter> starter(MakeSandboxStarter()); |