123456789101112131415161718192021 |
- 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 f82e41ee24e1dad66fc983492b3bc6461d6a254c..5abab1e18398118ac928d60df302f9f545d27b9f 100644
- --- a/base/trace_event/builtin_categories.h
- +++ b/base/trace_event/builtin_categories.h
- @@ -82,6 +82,7 @@
- X("drm") \
- X("drmcursor") \
- X("dwrite") \
- + X("electron") \
- X("evdev") \
- X("event") \
- X("exo") \
|