blob: 4a388d8d44f2ccae891abcbaa34de3e5e491f32c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_TRACING_COMMON_TRACE_STARTUP_H
#define COMPONENTS_TRACING_COMMON_TRACE_STARTUP_H
#include "components/tracing/tracing_export.h"
namespace tracing {
// Enables TraceLog with config based on the command line flags of the process.
// If |can_access_file_system| is false then TraceLog is not enabled in case it
// is required to read config file to start tracing.
void TRACING_EXPORT EnableStartupTracingIfNeeded(bool can_access_file_system);
} // namespace tracing
#endif // COMPONENTS_TRACING_COMMON_TRACE_STARTUP_H
|