12345678910111213141516171819202122 |
- From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
- From: Samuel Attard <[email protected]>
- Date: Tue, 23 Apr 2019 09:51:43 -0700
- Subject: build_add_electron_tracing_category.patch
- All TRACE events in Chromium use a static assert to ensure that the
- categories in use are known / declared. This patch is required for us
- to introduce a new Electron category for Electron-specific tracing.
- diff --git a/base/trace_event/builtin_categories.h b/base/trace_event/builtin_categories.h
- index 1ddaeafd2779a40a56c11b2e0b22e057c578bd0a..0f52af2a437c548fd85b82b313cf2826f4dea590 100644
- --- a/base/trace_event/builtin_categories.h
- +++ b/base/trace_event/builtin_categories.h
- @@ -80,6 +80,8 @@
- X("drm") \
- X("drmcursor") \
- X("dwrite") \
- + X("DXVA_Decoding") \
- + X("electron") \
- X("evdev") \
- X("event") \
- X("exo") \
|