1 // Copyright 2023 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 NET_BASE_TRACING_H_ 6 #define NET_BASE_TRACING_H_ 7 8 #include "build/build_config.h" 9 #include "net/base/cronet_buildflags.h" 10 11 #if BUILDFLAG(CRONET_BUILD) && !BUILDFLAG(IS_APPLE) 12 #include "net/base/trace_event_stub.h" // IWYU pragma: export 13 #endif // BUILDFLAG(CRONET_BUILD) && !BUILDFLAG(IS_APPLE) 14 15 #include "base/trace_event/base_tracing.h" // IWYU pragma: export 16 17 #endif // NET_BASE_TRACING_H_ 18