added GetDocument()

git-svn-id: svn://10.0.0.236/trunk@24974 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com
1999-03-24 05:46:06 +00:00
parent 038f23f042
commit c0cc339fa7
2 changed files with 16 additions and 0 deletions

View File

@@ -22,6 +22,8 @@
#include "nsISupports.h"
#include "nsplugin.h"
class nsIDocument;
#define NS_IPLUGININSTANCEOWNER_IID \
{ 0x18270870, 0x32f1, 0x11d2, \
{ 0xa8, 0x30, 0x00, 0x40, 0x95, 0x9a, 0x28, 0xc9 } }
@@ -83,6 +85,12 @@ public:
*/
NS_IMETHOD
ShowStatus(const char *aStatusMsg) = 0;
/**
* Get the associated document.
*/
NS_IMETHOD
GetDocument(nsIDocument* *aDocument) = 0;
};
#endif

View File

@@ -22,6 +22,8 @@
#include "nsISupports.h"
#include "nsplugin.h"
class nsIDocument;
#define NS_IPLUGININSTANCEOWNER_IID \
{ 0x18270870, 0x32f1, 0x11d2, \
{ 0xa8, 0x30, 0x00, 0x40, 0x95, 0x9a, 0x28, 0xc9 } }
@@ -83,6 +85,12 @@ public:
*/
NS_IMETHOD
ShowStatus(const char *aStatusMsg) = 0;
/**
* Get the associated document.
*/
NS_IMETHOD
GetDocument(nsIDocument* *aDocument) = 0;
};
#endif