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 2c2cde3260fb1d104d01fcc0fb7b160dc29fc4c0..61a55b7f837c6881efe277d9a4653eee9d650206 100644
- --- a/base/trace_event/builtin_categories.h
- +++ b/base/trace_event/builtin_categories.h
- @@ -80,6 +80,7 @@
- X("drmcursor") \
- X("dwrite") \
- X("DXVA_Decoding") \
- + X("electron") \
- X("evdev") \
- X("event") \
- X("exo") \
|