зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
6472928439
Коммит
23742b9ac3
|
@ -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()) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче