PCompositorWidget.ipdl 700 B

12345678910111213141516171819202122232425262728
  1. /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. include protocol PCompositorBridge;
  6. // This file is a stub, for platforms that do not yet support out-of-process
  7. // compositing or do not need specialized types to do so.
  8. namespace mozilla {
  9. namespace widget {
  10. sync protocol PCompositorWidget
  11. {
  12. manager PCompositorBridge;
  13. parent:
  14. async __delete__();
  15. child:
  16. async ObserveVsync();
  17. async UnobserveVsync();
  18. };
  19. } // namespace widget
  20. } // namespace mozilla