chromium/components/performance_manager/graph/system_node_impl.cc

// Copyright 2018 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/system_node_impl.h"

#include <algorithm>
#include <iterator>

#include "base/containers/flat_set.h"
#include "base/process/process_handle.h"
#include "components/performance_manager/graph/frame_node_impl.h"
#include "components/performance_manager/graph/graph_impl.h"
#include "components/performance_manager/graph/graph_impl_operations.h"
#include "components/performance_manager/graph/page_node_impl.h"
#include "components/performance_manager/graph/process_node_impl.h"

namespace performance_manager {

SystemNodeImpl::SystemNodeImpl() {}

SystemNodeImpl::~SystemNodeImpl() {}

void SystemNodeImpl::RemoveNodeAttachedData() {}

void SystemNodeImpl::OnProcessMemoryMetricsAvailable() {}

void SystemNodeImpl::OnMemoryPressure(MemoryPressureLevel new_level) {}

}  // namespace performance_manager