blob: 6ec1c58a981b1a81de6ea3376cd75e6b26763cdb [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_PERFORMANCE_MANAGER_MAIN_THREAD_OBSERVER_H_
#define COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_PERFORMANCE_MANAGER_MAIN_THREAD_OBSERVER_H_
#include "base/observer_list_types.h"
namespace content {
class WebContents;
} // namespace content
namespace performance_manager {
// Interface to observe PerformanceManager events that happen on the main
// thread. All methods are invoked on the main thread.
class PerformanceManagerMainThreadObserver : public base::CheckedObserver {
public:
~PerformanceManagerMainThreadObserver() override = default;
// Invoked when a PageNode is created for |web_contents|. The PageNode can be
// retrieved via PerformanceManager::GetPageNodeForWebContents(). The PageNode
// will be destroyed when |web_contents| is destroyed or when the
// PerformanceManagerRegistry is destroyed, whichever comes first.
virtual void OnPageNodeCreatedForWebContents(
content::WebContents* web_contents) = 0;
protected:
PerformanceManagerMainThreadObserver() = default;
};
} // namespace performance_manager
#endif // COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_PERFORMANCE_MANAGER_MAIN_THREAD_OBSERVER_H_