gecko-dev/widget/windows/PCompositorWidget.ipdl
sotaro 164c8f7d81 Bug 1524591 - Call SetParent in UI process r=mattwoodrow
During security.sandbox.gpu.level=1, compositor window's parent cannot be set in GPU process, it needs to be set in UI process.

Differential Revision: https://phabricator.services.mozilla.com/D18811
2019-02-07 16:01:41 +09:00

35 lines
1016 B
Plaintext

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=99: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
include protocol PCompositorBridge;
using mozilla::gfx::IntSize from "mozilla/gfx/Point.h";
using mozilla::WindowsHandle from "ipc/IPCMessageUtils.h";
using nsTransparencyMode from "mozilla/widget/WidgetMessageUtils.h";
namespace mozilla {
namespace widget {
sync protocol PCompositorWidget
{
manager PCompositorBridge;
parent:
sync EnterPresentLock();
sync LeavePresentLock();
async UpdateTransparency(nsTransparencyMode aMode);
sync ClearTransparentWindow();
async __delete__();
child:
async ObserveVsync();
async UnobserveVsync();
async UpdateCompositorWnd(WindowsHandle aCompositorWnd, WindowsHandle aParentWnd);
};
} // namespace widget
} // namespace mozilla