gecko/content/media/gmp/PGMP.ipdl

34 lines
849 B
Plaintext
Raw Normal View History

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 PGMPVideoDecoder;
include protocol PGMPVideoEncoder;
include protocol PCrashReporter;
include protocol PGMPDecryptor;
using mozilla::dom::NativeThreadId from "mozilla/dom/TabMessageUtils.h";
namespace mozilla {
namespace gmp {
intr protocol PGMP
{
manages PGMPDecryptor;
manages PGMPVideoDecoder;
manages PGMPVideoEncoder;
manages PCrashReporter;
parent:
async PCrashReporter(NativeThreadId tid);
child:
async PGMPDecryptor();
async PGMPVideoDecoder();
async PGMPVideoEncoder();
};
} // namespace gmp
} // namespace mozilla