From 74ef97ed88f4e402c1802b374b91dcf8c2e3693f Mon Sep 17 00:00:00 2001 From: "jst%mozilla.jstenback.com" Date: Wed, 9 Mar 2005 17:50:52 +0000 Subject: [PATCH] Adding new file, removing old file to fix bugstage. git-svn-id: svn://10.0.0.236/trunk@170448 18797224-902f-48f8-a5cc-f745e15eee43 --- ...imePlugin.h => nsIPluginInstanceInternal.h} | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) rename mozilla/modules/plugin/base/public/{nsINPRuntimePlugin.h => nsIPluginInstanceInternal.h} (81%) diff --git a/mozilla/modules/plugin/base/public/nsINPRuntimePlugin.h b/mozilla/modules/plugin/base/public/nsIPluginInstanceInternal.h similarity index 81% rename from mozilla/modules/plugin/base/public/nsINPRuntimePlugin.h rename to mozilla/modules/plugin/base/public/nsIPluginInstanceInternal.h index 2ef80bd1ce2..97b72f7f9b2 100644 --- a/mozilla/modules/plugin/base/public/nsINPRuntimePlugin.h +++ b/mozilla/modules/plugin/base/public/nsIPluginInstanceInternal.h @@ -34,24 +34,26 @@ * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ -#ifndef nsINPRuntimePlugin_h___ -#define nsINPRuntimePlugin_h___ +#ifndef nsIPluginInstanceInternal_h___ +#define nsIPluginInstanceInternal_h___ #include "nsISupports.h" struct JSObject; struct JSContext; -#define NS_INPRUNTIMEPLUGIN_IID \ - {0xbd962bb4, 0x54c3, 0x4d23, \ - { 0xa8, 0xca, 0x54, 0x16, 0x08, 0x02, 0xc2, 0x59 }} +#define NS_IPLUGININSTANCEINTERNAL_IID \ + { 0x301f13ed, 0x50f2, 0x4ed2, \ + { 0x83, 0x0d, 0x78, 0x36, 0x1d, 0x01, 0x76, 0xaf }} -class NS_NO_VTABLE nsINPRuntimePlugin : public nsISupports +class NS_NO_VTABLE nsIPluginInstanceInternal : public nsISupports { public: - NS_DEFINE_STATIC_IID_ACCESSOR(NS_INPRUNTIMEPLUGIN_IID) + NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPLUGININSTANCEINTERNAL_IID) virtual JSObject *GetJSObject(JSContext *cx) = 0; + + virtual nsresult GetFormValue(nsAString& aValue) = 0; }; -#endif /* nsINPRuntimePlugin_h___ */ +#endif /* nsIPluginInstanceInternal_h___ */