// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ #define CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_ #include <memory> #include "base/trace_event/trace_event_impl.h" #include "base/values.h" #include "content/common/content_export.h" namespace content { // BackgroundTracingConfig is passed to the BackgroundTracingManager to // setup the trigger rules used to enable/disable background tracing. class CONTENT_EXPORT BackgroundTracingConfig { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_