#ifndef COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERSISTENCE_UNITTEST_UTILS_H_
#define COMPONENTS_PERFORMANCE_MANAGER_TEST_SUPPORT_PERSISTENCE_UNITTEST_UTILS_H_
#include <memory>
#include <vector>
#include "base/memory/weak_ptr.h"
#include "components/performance_manager/performance_manager_impl.h"
#include "components/performance_manager/persistence/site_data/site_data_impl.h"
#include "components/performance_manager/persistence/site_data/site_data_store.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace performance_manager {
namespace testing {
class MockSiteDataImplOnDestroyDelegate
: public internal::SiteDataImpl::OnDestroyDelegate { … };
class NoopSiteDataStore : public SiteDataStore { … };
}
}
#endif