chromium/components/performance_manager/graph/worker_node_impl_describer.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/performance_manager/graph/worker_node_impl_describer.h"

#include <utility>

#include "base/strings/string_number_conversions.h"
#include "base/values.h"
#include "components/performance_manager/graph/worker_node_impl.h"
#include "components/performance_manager/public/graph/node_data_describer_registry.h"
#include "components/performance_manager/public/graph/node_data_describer_util.h"

namespace performance_manager {

namespace {

const char kDescriberName[] =;

const char* WorkerTypeToString(WorkerNode::WorkerType state) {}

}  // namespace

void WorkerNodeImplDescriber::OnPassedToGraph(Graph* graph) {}

void WorkerNodeImplDescriber::OnTakenFromGraph(Graph* graph) {}

base::Value::Dict WorkerNodeImplDescriber::DescribeWorkerNodeData(
    const WorkerNode* node) const {}

}  // namespace performance_manager