chromium/components/performance_manager/test_support/performance_manager_test_harness.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/test_support/performance_manager_test_harness.h"

#include <memory>

#include "base/check.h"
#include "base/functional/bind.h"
#include "base/test/bind.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/web_contents.h"

namespace performance_manager {

PerformanceManagerTestHarness::PerformanceManagerTestHarness() {}

PerformanceManagerTestHarness::~PerformanceManagerTestHarness() = default;

void PerformanceManagerTestHarness::SetUp() {}

void PerformanceManagerTestHarness::TearDown() {}

std::unique_ptr<content::WebContents>
PerformanceManagerTestHarness::CreateTestWebContents() {}

void PerformanceManagerTestHarness::TearDownNow() {}

}  // namespace performance_manager