2014-05-18 07:05:46 +04: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/. */
|
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
include protocol PGMPContent;
|
2014-08-05 11:56:05 +04:00
|
|
|
include protocol PGMPTimer;
|
2014-08-19 12:56:33 +04:00
|
|
|
include protocol PGMPStorage;
|
2014-07-18 21:35:44 +04:00
|
|
|
|
|
|
|
using mozilla::dom::NativeThreadId from "mozilla/dom/TabMessageUtils.h";
|
2014-05-18 07:05:46 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gmp {
|
|
|
|
|
2014-07-02 06:26:35 +04:00
|
|
|
intr protocol PGMP
|
2014-05-18 07:05:46 +04:00
|
|
|
{
|
2014-08-05 11:56:05 +04:00
|
|
|
manages PGMPTimer;
|
2014-08-19 12:56:33 +04:00
|
|
|
manages PGMPStorage;
|
2014-07-18 21:35:44 +04:00
|
|
|
|
|
|
|
parent:
|
2017-02-16 01:44:29 +03:00
|
|
|
async InitCrashReporter(Shmem shmem, NativeThreadId threadId);
|
2014-08-05 11:56:05 +04:00
|
|
|
async PGMPTimer();
|
2014-08-19 12:56:33 +04:00
|
|
|
async PGMPStorage();
|
2014-07-18 21:35:44 +04:00
|
|
|
|
2015-02-10 13:48:42 +03:00
|
|
|
async PGMPContentChildDestroyed();
|
|
|
|
|
2014-05-18 07:05:46 +04:00
|
|
|
child:
|
2015-10-14 09:42:25 +03:00
|
|
|
async CrashPluginNow();
|
2016-04-12 07:12:21 +03:00
|
|
|
intr StartPlugin(nsString adapter);
|
2018-01-03 10:37:07 +03:00
|
|
|
async ProvideStorageId(nsCString storageId);
|
2016-02-23 21:21:47 +03:00
|
|
|
async PreloadLibs(nsCString libs);
|
2015-02-10 13:48:42 +03:00
|
|
|
async CloseActive();
|
2017-01-05 23:55:27 +03:00
|
|
|
async InitGMPContentChild(Endpoint<PGMPContentChild> endpoint);
|
2014-05-18 07:05:46 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace gmp
|
|
|
|
} // namespace mozilla
|