2014-05-17 20:05:46 -07:00
|
|
|
/* -*- 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;
|
2014-07-18 10:35:44 -07:00
|
|
|
include protocol PCrashReporter;
|
2014-07-27 16:20:34 -07:00
|
|
|
include protocol PGMPDecryptor;
|
2014-08-02 14:29:26 -07:00
|
|
|
include protocol PGMPAudioDecoder;
|
2014-08-05 00:56:05 -07:00
|
|
|
include protocol PGMPTimer;
|
2014-08-19 01:56:33 -07:00
|
|
|
include protocol PGMPStorage;
|
2014-07-18 10:35:44 -07:00
|
|
|
|
|
|
|
using mozilla::dom::NativeThreadId from "mozilla/dom/TabMessageUtils.h";
|
2014-05-17 20:05:46 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
2014-07-01 19:26:35 -07:00
|
|
|
intr protocol PGMP
|
2014-05-17 20:05:46 -07:00
|
|
|
{
|
2014-08-02 14:29:26 -07:00
|
|
|
manages PGMPAudioDecoder;
|
2014-07-27 16:20:34 -07:00
|
|
|
manages PGMPDecryptor;
|
2014-05-17 20:05:46 -07:00
|
|
|
manages PGMPVideoDecoder;
|
|
|
|
manages PGMPVideoEncoder;
|
2014-07-18 10:35:44 -07:00
|
|
|
manages PCrashReporter;
|
2014-08-05 00:56:05 -07:00
|
|
|
manages PGMPTimer;
|
2014-08-19 01:56:33 -07:00
|
|
|
manages PGMPStorage;
|
2014-07-18 10:35:44 -07:00
|
|
|
|
|
|
|
parent:
|
|
|
|
async PCrashReporter(NativeThreadId tid);
|
2014-08-05 00:56:05 -07:00
|
|
|
async PGMPTimer();
|
2014-08-19 01:56:33 -07:00
|
|
|
async PGMPStorage();
|
2014-07-18 10:35:44 -07:00
|
|
|
|
2014-08-17 14:41:56 -07:00
|
|
|
async AsyncShutdownComplete();
|
|
|
|
async AsyncShutdownRequired();
|
|
|
|
|
2014-05-17 20:05:46 -07:00
|
|
|
child:
|
2014-08-02 14:29:26 -07:00
|
|
|
async PGMPAudioDecoder();
|
2014-07-27 16:20:34 -07:00
|
|
|
async PGMPDecryptor();
|
2014-07-01 19:26:35 -07:00
|
|
|
async PGMPVideoDecoder();
|
|
|
|
async PGMPVideoEncoder();
|
2014-07-30 14:40:43 -07:00
|
|
|
|
2014-10-12 15:53:44 -07:00
|
|
|
async SetNodeId(nsCString nodeId);
|
|
|
|
async StartPlugin();
|
2014-08-17 14:41:56 -07:00
|
|
|
async BeginAsyncShutdown();
|
2014-07-30 14:40:43 -07:00
|
|
|
async CrashPluginNow();
|
2014-05-17 20:05:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|