chromium/components/performance_manager/graph/graph.cc

// Copyright 2019 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/public/graph/graph.h"

#include "base/check_op.h"
#include "base/dcheck_is_on.h"
#include "base/sequence_checker.h"

namespace performance_manager {

Graph::Graph() = default;
Graph::~Graph() = default;

GraphOwned::GraphOwned() {}

GraphOwned::~GraphOwned() {}

void GraphOwned::PassToGraphImpl(Graph* graph) {}

Graph* GraphOwned::GetOwningGraph() const {}

void GraphOwned::TakeFromGraphImpl(Graph* graph) {}

GraphOwnedDefaultImpl::GraphOwnedDefaultImpl() = default;
GraphOwnedDefaultImpl::~GraphOwnedDefaultImpl() = default;

}  // namespace performance_manager