2009-09-08 14:22:50 -07:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
|
|
|
2010-04-26 18:11:46 -07:00
|
|
|
include protocol PPluginInstance;
|
2009-09-08 14:22:50 -07:00
|
|
|
|
2009-12-03 00:16:14 -08:00
|
|
|
include "npapi.h";
|
|
|
|
|
|
|
|
using NPReason;
|
|
|
|
|
2009-09-08 14:22:50 -07:00
|
|
|
namespace mozilla {
|
|
|
|
namespace plugins {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This empty protocol exists only to be constructed and destroyed.
|
|
|
|
*/
|
|
|
|
rpc protocol PStreamNotify
|
|
|
|
{
|
|
|
|
manager PPluginInstance;
|
2009-12-03 00:16:14 -08:00
|
|
|
|
|
|
|
child:
|
|
|
|
/**
|
|
|
|
* Represents NPP_URLNotify
|
|
|
|
*/
|
2010-03-06 13:03:05 -08:00
|
|
|
async __delete__(NPReason reason);
|
2009-09-08 14:22:50 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace plugins
|
|
|
|
} // namespace mozilla
|