Bug 1143823 part 2: Make PeerConnectionCtx::queueJSEPOperation take a raw pointer instead of a nsRefPtr. r=bwc

This commit is contained in:
Daniel Holbert 2015-03-17 09:29:17 -07:00
parent f45cf415a4
commit 2a3c58ce60
2 changed files with 2 additions and 2 deletions

View File

@ -373,7 +373,7 @@ PeerConnectionCtx::~PeerConnectionCtx() {
#endif
};
void PeerConnectionCtx::queueJSEPOperation(nsRefPtr<nsIRunnable> aOperation) {
void PeerConnectionCtx::queueJSEPOperation(nsIRunnable* aOperation) {
mQueuedJSEPOperations.AppendElement(aOperation);
}

View File

@ -39,7 +39,7 @@ class PeerConnectionCtx {
return true;
}
void queueJSEPOperation(nsRefPtr<nsIRunnable> aJSEPOperation);
void queueJSEPOperation(nsIRunnable* aJSEPOperation);
void onGMPReady();
bool gmpHasH264();