// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <string.h> #include "include/libplatform/v8-tracing.h" #include "src/base/logging.h" namespace v8 { class Isolate; namespace platform { namespace tracing { TraceConfig* TraceConfig::CreateDefaultTraceConfig() { … } bool TraceConfig::IsCategoryGroupEnabled(const char* category_group) const { … } void TraceConfig::AddIncludedCategory(const char* included_category) { … } } // namespace tracing } // namespace platform } // namespace v8