mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1143823 part 2: Make PeerConnectionCtx::queueJSEPOperation take a raw pointer instead of a nsRefPtr. r=bwc
This commit is contained in:
parent
f45cf415a4
commit
2a3c58ce60
@ -373,7 +373,7 @@ PeerConnectionCtx::~PeerConnectionCtx() {
|
||||
#endif
|
||||
};
|
||||
|
||||
void PeerConnectionCtx::queueJSEPOperation(nsRefPtr<nsIRunnable> aOperation) {
|
||||
void PeerConnectionCtx::queueJSEPOperation(nsIRunnable* aOperation) {
|
||||
mQueuedJSEPOperations.AppendElement(aOperation);
|
||||
}
|
||||
|
||||
|
@ -39,7 +39,7 @@ class PeerConnectionCtx {
|
||||
return true;
|
||||
}
|
||||
|
||||
void queueJSEPOperation(nsRefPtr<nsIRunnable> aJSEPOperation);
|
||||
void queueJSEPOperation(nsIRunnable* aJSEPOperation);
|
||||
void onGMPReady();
|
||||
|
||||
bool gmpHasH264();
|
||||
|
Loading…
Reference in New Issue
Block a user