#ifndef CHROME_BROWSER_POLICY_MESSAGING_LAYER_UTIL_MANUAL_TEST_HEARTBEAT_EVENT_H_
#define CHROME_BROWSER_POLICY_MESSAGING_LAYER_UTIL_MANUAL_TEST_HEARTBEAT_EVENT_H_
#include <memory>
#include "build/chromeos_buildflags.h"
#include "components/keyed_service/core/keyed_service.h"
#if BUILDFLAG(IS_CHROMEOS_ASH)
#include "chrome/browser/ash/policy/status_collector/managed_session_service.h"
#endif
namespace reporting {
class ManualTestHeartbeatEvent :
#if BUILDFLAG(IS_CHROMEOS_ASH)
public policy::ManagedSessionService::Observer,
#endif
public KeyedService { … };
}
#endif