Bug 1884378 - Add Sandbox profiler category r=canaltinova,profiler-reviewers,aabh

Differential Revision: https://phabricator.services.mozilla.com/D207737
This commit is contained in:
Alexandre Lissy 2024-06-14 10:17:37 +00:00
Родитель 77d0d41deb
Коммит 5ee893f489
2 изменённых файлов: 9 добавлений и 0 удалений

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

@ -305,3 +305,10 @@
subcategories:
- name: REMOTE_PROTOCOL
label: Other
- name: SANDBOX
label: Sandbox
color: grey
subcategories:
- name: SANDBOX
label: Other

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

@ -42,6 +42,8 @@ Maybe<MarkerTiming> ToTiming(char phase) {
MarkerCategory ToCategory(const char category) {
switch (category) {
case 'S':
return geckoprofiler::category::SANDBOX;
case 'M':
return geckoprofiler::category::MEDIA_RT;
default: