blob: 400f9c4e99f4ad58b927343081415c5a8d2ecbdb [file] [log] [blame]
Greg Thompson113048a2025-01-09 07:20:301// Copyright 2025 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_TRACING_TRACING_FEATURES_H_
6#define CHROME_BROWSER_TRACING_TRACING_FEATURES_H_
7
8#include "base/feature_list.h"
9#include "build/build_config.h"
10
11#if BUILDFLAG(IS_WIN)
12// A Feature to selectively enable connecting to the Windows system tracing
13// service when the tracing service is started.
14BASE_DECLARE_FEATURE(kWindowsSystemTracing);
15#endif // BUILDFLAG(IS_WIN)
16
17#endif // CHROME_BROWSER_TRACING_TRACING_FEATURES_H_