Bug 1143823 part 3: Make PeerConnectionMedia::PerformOrEnqueueIceCtxOperation() 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
Родитель fca4e2056d
Коммит 3b00e54dbd
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -501,8 +501,7 @@ PeerConnectionMedia::FlushIceCtxOperationQueueIfReady()
}
void
PeerConnectionMedia::PerformOrEnqueueIceCtxOperation(
const nsRefPtr<nsIRunnable>& runnable)
PeerConnectionMedia::PerformOrEnqueueIceCtxOperation(nsIRunnable* runnable)
{
ASSERT_ON_THREAD(mMainThread);

Просмотреть файл

@ -422,7 +422,7 @@ class PeerConnectionMedia : public sigslot::has_slots<> {
const std::vector<std::string>& aCandidateList);
void GatherIfReady();
void FlushIceCtxOperationQueueIfReady();
void PerformOrEnqueueIceCtxOperation(const nsRefPtr<nsIRunnable>& runnable);
void PerformOrEnqueueIceCtxOperation(nsIRunnable* runnable);
void EnsureIceGathering_s();
void StartIceChecks_s(bool aIsControlling,
bool aIsIceLite,