Bug 1337189 (follow-up) - Fix MOZ_TASK_TRACER bustage. r=schien.

--HG--
extra : rebase_source : 6456da27632602250bde5bb96623d79ad180964d
This commit is contained in:
Nicholas Nethercote 2017-02-13 16:34:58 +11:00
Родитель f1c2bbe99a
Коммит c0e1a9dba7
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2050,7 +2050,7 @@ profiler_start(int aProfileEntries, double aInterval,
}
#ifdef MOZ_TASK_TRACER
if (mTaskTracer) {
if (gTaskTracer) {
mozilla::tasktracer::StartLogging();
}
#endif
@ -2211,7 +2211,7 @@ profiler_stop()
}
#ifdef MOZ_TASK_TRACER
if (mTaskTracer) {
if (gTaskTracer) {
mozilla::tasktracer::StopLogging();
}
#endif