#include "chrome/browser/performance_manager/policies/working_set_trimmer_policy.h"
#include <memory>
#include "components/performance_manager/graph/process_node_impl.h"
#include "components/performance_manager/test_support/graph_test_harness.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace performance_manager {
namespace policies {
class MockWorkingSetTrimmerPolicy : public WorkingSetTrimmerPolicy { … };
class WorkingSetTrimmerPolicyTest : public GraphTestHarness { … };
TEST_F(WorkingSetTrimmerPolicyTest, SetTrimTimeOnNode) { … }
TEST_F(WorkingSetTrimmerPolicyTest, TrimOnFrozen) { … }
}
}