#ifndef COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_DECORATORS_UTILS_H_
#define COMPONENTS_PERFORMANCE_MANAGER_DECORATORS_DECORATORS_UTILS_H_
#include "components/performance_manager/graph/page_node_impl.h"
#include "components/performance_manager/public/performance_manager.h"
#include "content/public/browser/browser_thread.h"
namespace performance_manager {
template <typename T, class decorator_data_type>
void SetPropertyForWebContentsPageNode(
content::WebContents* contents,
void (decorator_data_type::*setter_function)(T),
T value) { … }
}
#endif