chromium/components/performance_manager/decorators/decorators_utils_unittest.cc

// Copyright 2020 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/decorators/decorators_utils.h"

#include <utility>

#include "base/test/bind.h"
#include "components/performance_manager/public/graph/node_attached_data.h"
#include "components/performance_manager/test_support/performance_manager_test_harness.h"
#include "content/public/browser/web_contents.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace performance_manager {

namespace {

class FakePageNodeDecoratorData
    : public ExternalNodeAttachedDataImpl<FakePageNodeDecoratorData> {};

class DecoratorsUtilsTest : public PerformanceManagerTestHarness {};

}  // namespace

// Test that the function parameter for SetPropertyForWebContentsPageNode has
// been called.
TEST_F(DecoratorsUtilsTest, SetPropertyForWebContentsPageNode) {}

}  // namespace performance_manager