2009-09-08 23:31:35 -07:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2009-09-08 23:31:35 -07:00
|
|
|
|
2010-04-26 18:11:46 -07:00
|
|
|
include protocol PPluginIdentifier;
|
|
|
|
include protocol PPluginInstance;
|
2011-07-26 09:55:58 -07:00
|
|
|
include protocol PPluginScriptableObject;
|
2011-06-08 12:56:31 -07:00
|
|
|
include protocol PCrashReporter;
|
2009-09-08 23:31:35 -07:00
|
|
|
|
|
|
|
|
2013-10-01 12:25:07 -07:00
|
|
|
using NPError from "npapi.h";
|
|
|
|
using NPNVariable from "npapi.h";
|
|
|
|
using mozilla::dom::NativeThreadId from "mozilla/dom/TabMessageUtils.h";
|
|
|
|
using class mac_plugin_interposing::NSCursorInfo from "mozilla/plugins/PluginMessageUtils.h";
|
|
|
|
using struct nsID from "nsID.h";
|
2009-06-30 11:51:05 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr protocol PPluginModule
|
2009-06-30 11:51:05 -07:00
|
|
|
{
|
2009-09-08 23:31:35 -07:00
|
|
|
manages PPluginInstance;
|
2010-03-23 07:30:51 -07:00
|
|
|
manages PPluginIdentifier;
|
2011-06-08 12:56:31 -07:00
|
|
|
manages PCrashReporter;
|
2010-03-23 07:30:51 -07:00
|
|
|
|
|
|
|
both:
|
|
|
|
/**
|
|
|
|
* Sending a void string to this constructor creates an int identifier whereas
|
|
|
|
* sending a non-void string will create a string identifier. This constructor
|
|
|
|
* may be called by either child or parent. If a race occurs by calling the
|
|
|
|
* constructor with the same string or int argument then we create two actors
|
|
|
|
* and detect the second instance in the child. We prevent the parent's actor
|
|
|
|
* from leaking out to plugin code and only allow the child's to be used.
|
2011-06-14 12:49:48 -07:00
|
|
|
*
|
|
|
|
* When calling into the plugin, the parent may create a "temporary"
|
2013-09-30 17:27:45 -07:00
|
|
|
* identifier which is only valid for the lifetime of the current inerrupt frame.
|
2010-03-23 07:30:51 -07:00
|
|
|
*/
|
|
|
|
async PPluginIdentifier(nsCString aString,
|
2011-06-14 12:49:48 -07:00
|
|
|
int32_t aInt,
|
|
|
|
bool temporary);
|
2009-09-08 23:31:35 -07:00
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
// Window-specific message which instructs the interrupt mechanism to enter
|
|
|
|
// a nested event loop for the current interrupt call.
|
|
|
|
async ProcessNativeEventsInInterruptCall();
|
2011-05-18 04:57:08 -07:00
|
|
|
|
2009-09-08 23:31:35 -07:00
|
|
|
child:
|
2011-01-05 11:44:21 -08:00
|
|
|
// Forces the child process to update its plugin function table.
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NP_GetEntryPoints()
|
2011-01-05 11:44:21 -08:00
|
|
|
returns (NPError rv);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NP_Initialize(uint32_t aFlags)
|
2011-06-08 12:56:31 -07:00
|
|
|
returns (NPError rv);
|
2009-09-08 23:31:35 -07:00
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr PPluginInstance(nsCString aMimeType,
|
2009-09-08 23:31:35 -07:00
|
|
|
uint16_t aMode,
|
2009-10-19 12:10:52 -07:00
|
|
|
nsCString[] aNames,
|
|
|
|
nsCString[] aValues)
|
2009-09-08 23:31:35 -07:00
|
|
|
returns (NPError rv);
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NP_Shutdown()
|
2009-11-03 13:37:07 -08:00
|
|
|
returns (NPError rv);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr OptionalFunctionsSupported()
|
2011-02-08 14:16:07 -08:00
|
|
|
returns (bool aURLRedirectNotify, bool aClearSiteData,
|
|
|
|
bool aGetSitesWithData);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NPP_ClearSiteData(nsCString site, uint64_t flags, uint64_t maxAge)
|
2011-02-08 14:16:07 -08:00
|
|
|
returns (NPError rv);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NPP_GetSitesWithData()
|
2011-02-08 14:16:07 -08:00
|
|
|
returns (nsCString[] sites);
|
2011-01-05 11:44:21 -08:00
|
|
|
|
2011-06-24 07:20:03 -07:00
|
|
|
// Windows specific message to set up an audio session in the plugin process
|
|
|
|
async SetAudioSessionData(nsID aID,
|
|
|
|
nsString aDisplayName,
|
|
|
|
nsString aIconPath);
|
|
|
|
|
2011-08-16 03:25:34 -07:00
|
|
|
async SetParentHangTimeout(uint32_t seconds);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr PCrashReporter()
|
2012-08-22 08:56:38 -07:00
|
|
|
returns (NativeThreadId tid, uint32_t processType);
|
2011-06-08 12:56:31 -07:00
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr GeckoGetProfile()
|
2013-03-21 02:17:23 -07:00
|
|
|
returns (nsCString aProfile);
|
|
|
|
|
2009-09-08 23:31:35 -07:00
|
|
|
parent:
|
2010-11-08 18:48:59 -08:00
|
|
|
/**
|
|
|
|
* This message is only used on X11 platforms.
|
|
|
|
*
|
|
|
|
* Send a dup of the plugin process's X socket to the parent
|
|
|
|
* process. In theory, this scheme keeps the plugin's X resources
|
|
|
|
* around until after both the plugin process shuts down *and* the
|
|
|
|
* parent process closes the dup fd. This is used to prevent the
|
|
|
|
* parent process from crashing on X errors if, e.g., the plugin
|
|
|
|
* crashes *just before* a repaint and the parent process tries to
|
|
|
|
* use the newly-invalid surface.
|
|
|
|
*/
|
|
|
|
async BackUpXResources(FileDescriptor aXSocketFd);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NPN_UserAgent()
|
2009-10-08 00:54:16 -07:00
|
|
|
returns (nsCString userAgent);
|
|
|
|
|
2013-09-30 17:27:45 -07:00
|
|
|
intr NPN_GetValue_WithBoolReturn(NPNVariable aVariable)
|
2009-12-01 13:27:13 -08:00
|
|
|
returns (NPError aError,
|
|
|
|
bool aBoolVal);
|
2010-02-16 10:44:25 -08:00
|
|
|
|
|
|
|
// Wake up and process a few native events. Periodically called by
|
|
|
|
// Gtk-specific code upon detecting that the plugin process has
|
|
|
|
// entered a nested event loop. If the browser doesn't process
|
|
|
|
// native events, then "livelock" and some other glitches can occur.
|
2013-09-30 17:27:45 -07:00
|
|
|
intr ProcessSomeEvents();
|
2010-02-24 14:25:16 -08:00
|
|
|
|
2010-08-13 09:45:50 -07:00
|
|
|
// OS X Specific calls to manage the plugin's window
|
|
|
|
// when interposing system calls.
|
|
|
|
async PluginShowWindow(uint32_t aWindowId, bool aModal,
|
|
|
|
int32_t aX, int32_t aY,
|
|
|
|
size_t aWidth, size_t aHeight);
|
|
|
|
async PluginHideWindow(uint32_t aWindowId);
|
2011-05-23 23:58:28 -07:00
|
|
|
|
|
|
|
// OS X Specific calls to allow the plugin to manage the cursor.
|
|
|
|
async SetCursor(NSCursorInfo cursorInfo);
|
|
|
|
async ShowCursor(bool show);
|
|
|
|
async PushCursor(NSCursorInfo cursorInfo);
|
|
|
|
async PopCursor();
|
|
|
|
sync GetNativeCursorsSupported() returns (bool supported);
|
2011-07-26 09:55:58 -07:00
|
|
|
|
|
|
|
sync NPN_SetException(nullable PPluginScriptableObject actor,
|
|
|
|
nsCString message);
|
2012-05-30 07:23:03 -07:00
|
|
|
|
|
|
|
async NPN_ReloadPlugins(bool aReloadPages);
|
2009-09-08 23:31:35 -07:00
|
|
|
};
|
2009-06-30 11:51:05 -07:00
|
|
|
|
2009-09-08 23:31:35 -07:00
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|