chromium/components/performance_manager/performance_manager_impl_unittest.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/performance_manager_impl.h"

#include <utility>

#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/gtest_util.h"
#include "components/performance_manager/graph/frame_node_impl.h"
#include "components/performance_manager/graph/page_node_impl.h"
#include "components/performance_manager/graph/process_node_impl.h"
#include "components/performance_manager/public/render_process_host_id.h"
#include "components/performance_manager/public/render_process_host_proxy.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/common/process_type.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/tokens/tokens.h"

namespace performance_manager {

class PerformanceManagerImplTest : public testing::Test {};

PerformanceManagerImplDeathTest;

TEST_F(PerformanceManagerImplTest, InstantiateNodes) {}

TEST_F(PerformanceManagerImplDeathTest, InvalidProcessHostProxies) {}

TEST_F(PerformanceManagerImplTest, BatchDeleteNodes) {}

TEST_F(PerformanceManagerImplTest, CallOnGraphImpl) {}

TEST_F(PerformanceManagerImplTest, CallOnGraphAndReplyWithResult) {}

}  // namespace performance_manager