From fdd5d25c832fdd8b64a080fb7bab024549a31ed5 Mon Sep 17 00:00:00 2001 From: "dbaron%fas.harvard.edu" Date: Tue, 21 Aug 2001 02:58:44 +0000 Subject: [PATCH] fixing Mac bustage. b=45797 git-svn-id: svn://10.0.0.236/trunk@101475 18797224-902f-48f8-a5cc-f745e15eee43 --- .../plugin/base/public/nsIPluginStreamInfo.h | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/mozilla/modules/plugin/base/public/nsIPluginStreamInfo.h b/mozilla/modules/plugin/base/public/nsIPluginStreamInfo.h index 6ee3460f826..948b2e3c0a4 100644 --- a/mozilla/modules/plugin/base/public/nsIPluginStreamInfo.h +++ b/mozilla/modules/plugin/base/public/nsIPluginStreamInfo.h @@ -27,9 +27,19 @@ #include "nsplugindefs.h" #include "nsISupports.h" +#define NS_IPLUGINSTREAMINFO_IID \ +{ /* ed7d4ca0-b005-11d2-adaa-00805f6dec49 */ \ + 0xed7d4ca0, \ + 0xb005, \ + 0x11d2, \ + {0xad, 0xaa, 0x00, 0x80, 0x5f, 0x6d, 0xec, 0x49} \ +} + class nsIPluginStreamInfo : public nsISupports { public: + NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPLUGINSTREAMINFO_IID) + NS_IMETHOD GetContentType(nsMIMEType* result) = 0; @@ -49,14 +59,6 @@ public: RequestRead(nsByteRange* rangeList) = 0; }; -#define NS_IPLUGINSTREAMINFO_IID \ -{ /* ed7d4ca0-b005-11d2-adaa-00805f6dec49 */ \ - 0xed7d4ca0, \ - 0xb005, \ - 0x11d2, \ - {0xad, 0xaa, 0x00, 0x80, 0x5f, 0x6d, 0xec, 0x49} \ -} - //////////////////////////////////////////////////////////////////////////////// #endif /* nsIPluginStreamInfo_h___ */