chromium/components/performance_manager/graph/node_base.cc

// Copyright 2017 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/node_base.h"

#include "components/performance_manager/graph/graph_impl.h"
#include "components/performance_manager/public/graph/node.h"

namespace performance_manager {

// static
const uintptr_t NodeBase::kNodeBaseType =;

NodeBase::NodeBase() = default;

NodeBase::~NodeBase() {}

// static
const NodeBase* NodeBase::FromNode(const Node* node) {}

// static
NodeBase* NodeBase::FromNode(Node* node) {}

bool NodeBase::CanSetProperty() const {}

bool NodeBase::CanSetAndNotifyProperty() const {}

void NodeBase::JoinGraph(GraphImpl* graph) {}

void NodeBase::OnJoiningGraph() {}

void NodeBase::OnBeforeLeavingGraph() {}

void NodeBase::LeaveGraph() {}

}  // namespace performance_manager