Blame widget/PCompositorWidget.ipdl

Packit f0b94e
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
Packit f0b94e
/* vim: set ts=8 sts=2 et sw=2 tw=99: */
Packit f0b94e
/* This Source Code Form is subject to the terms of the Mozilla Public
Packit f0b94e
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit f0b94e
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Packit f0b94e
Packit f0b94e
include protocol PCompositorBridge;
Packit f0b94e
Packit f0b94e
// This file is a stub, for platforms that do not yet support out-of-process
Packit f0b94e
// compositing or do not need specialized types to do so.
Packit f0b94e
Packit f0b94e
namespace mozilla {
Packit f0b94e
namespace widget {
Packit f0b94e
Packit f0b94e
sync protocol PCompositorWidget
Packit f0b94e
{
Packit f0b94e
  manager PCompositorBridge;
Packit f0b94e
Packit f0b94e
parent:
Packit f0b94e
  async __delete__();
Packit f0b94e
Packit f0b94e
child:
Packit f0b94e
  async ObserveVsync();
Packit f0b94e
  async UnobserveVsync();
Packit f0b94e
};
Packit f0b94e
Packit f0b94e
} // namespace widget
Packit f0b94e
} // namespace mozilla