#ifndef COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_DECORATORS_PAGE_LIVE_STATE_DECORATOR_H_
#define COMPONENTS_PERFORMANCE_MANAGER_PUBLIC_DECORATORS_PAGE_LIVE_STATE_DECORATOR_H_
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/observer_list_types.h"
#include "base/sequence_checker.h"
#include "components/performance_manager/public/graph/graph.h"
#include "components/performance_manager/public/graph/node_data_describer.h"
#include "components/performance_manager/public/graph/page_node.h"
#include "ui/accessibility/ax_mode.h"
#include "url/gurl.h"
namespace content {
class WebContents;
}
namespace performance_manager {
class PageNode;
class PageLiveStateObserver;
class PageLiveStateDecorator : public GraphOwnedDefaultImpl,
public NodeDataDescriberDefaultImpl,
public PageNode::ObserverDefaultImpl { … };
class PageLiveStateDecorator::Data { … };
class PageLiveStateObserver : public base::CheckedObserver { … };
class PageLiveStateObserverDefaultImpl : public PageLiveStateObserver { … };
}
#endif