Bug 1394927 - Use profiler_add_marker vs. profiler_tracing for accessibility profile events tags. r=aklotz

MozReview-Commit-ID: 9oJcPtdodrU

--HG--
extra : rebase_source : c56fb92d0521f5d3769ba8952a31d8b2c80cf498
This commit is contained in:
Jim Mathies 2017-08-30 16:55:28 -05:00
Родитель 6472928439
Коммит 23742b9ac3
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -848,8 +848,10 @@ Accessible::HandleAccEvent(AccEvent* aEvent)
if (profiler_is_active()) {
nsAutoCString strEventType;
GetAccService()->GetStringEventType(aEvent->GetEventType(), strEventType);
profiler_tracing("A11y Event", strEventType.get());
nsAutoCString strMarker;
strMarker.AppendLiteral("A11y Event - ");
strMarker.Append(strEventType);
profiler_add_marker(strMarker.get());
}
if (IPCAccessibilityActive() && Document()) {