-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
www/seamoney Mozilla Bug 681026 upstream patch changes
- Loading branch information
Nigel Taylor
committed
Sep 20, 2011
1 parent
ac4fb58
commit 8a73ed9
Showing
4 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
8 changes: 5 additions & 3 deletions
8
www/seamonkey/patches/patch-mozilla_widget_public_nsIGfxInfo_idl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
$OpenBSD$ | ||
--- mozilla/widget/public/nsIGfxInfo.idl.orig Fri Aug 12 15:16:45 2011 | ||
+++ mozilla/widget/public/nsIGfxInfo.idl Fri Aug 26 15:38:17 2011 | ||
Bug fix 681026 | ||
|
||
--- mozilla/widget/public/nsIGfxInfo.idl.orig Sat Sep 3 00:56:23 2011 | ||
+++ mozilla/widget/public/nsIGfxInfo.idl Tue Sep 20 22:22:52 2011 | ||
@@ -131,5 +131,8 @@ interface nsIGfxInfo : nsISupports | ||
* underlying GL impl that's used to implement WebGL. | ||
*/ | ||
DOMString getWebGLParameter(in DOMString aParam); | ||
+ | ||
+ // only useful on X11 | ||
+ [notxpcom] void GetData(); | ||
+ [noscript, notxpcom] void GetData(); | ||
}; | ||
|
8 changes: 5 additions & 3 deletions
8
www/seamonkey/patches/patch-mozilla_widget_src_xpwidgets_GfxInfoBase_h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
$OpenBSD$ | ||
--- mozilla/widget/src/xpwidgets/GfxInfoBase.h.orig Fri Aug 12 15:16:46 2011 | ||
+++ mozilla/widget/src/xpwidgets/GfxInfoBase.h Fri Aug 26 15:38:17 2011 | ||
Bug Fix 681026 | ||
|
||
--- mozilla/widget/src/xpwidgets/GfxInfoBase.h.orig Sat Sep 3 00:56:28 2011 | ||
+++ mozilla/widget/src/xpwidgets/GfxInfoBase.h Tue Sep 20 22:24:19 2011 | ||
@@ -84,6 +84,9 @@ class GfxInfoBase : public nsIGfxInfo, (public) | ||
// Ideally, Init() would be void-return, but the rules of | ||
// NS_GENERIC_FACTORY_CONSTRUCTOR_INIT require it be nsresult return. | ||
virtual nsresult Init(); | ||
+ | ||
+ // only useful on X11 | ||
+ virtual void GetData() {} | ||
+ NS_IMETHOD_(void) GetData() { } | ||
|
||
protected: | ||
|
14 changes: 8 additions & 6 deletions
14
www/seamonkey/patches/patch-mozilla_widget_src_xpwidgets_GfxInfoX11_h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
www/seamonkey/patches/patch-mozilla_widget_src_xpwidgets_nsBaseWidget_cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters