2010-03-23 07:30:51 -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/. */
|
2010-03-23 07:30:51 -07:00
|
|
|
|
2010-04-26 18:11:46 -07:00
|
|
|
include protocol PPluginModule;
|
2010-03-23 07:30:51 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents an NPIdentifier that wraps either a string or an integer.
|
|
|
|
*/
|
|
|
|
async protocol PPluginIdentifier
|
|
|
|
{
|
|
|
|
manager PPluginModule;
|
|
|
|
|
2011-06-14 12:49:48 -07:00
|
|
|
parent:
|
|
|
|
/**
|
|
|
|
* If this is a temporary identifier, inform the parent that the plugin
|
|
|
|
* has made the identifier permanent by calling NPN_GetStringIdentifier.
|
|
|
|
*/
|
|
|
|
async Retain();
|
|
|
|
|
2010-03-23 07:30:51 -07:00
|
|
|
child:
|
|
|
|
async __delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|