#ifndef CONTENT_BROWSER_SCREENLOCK_MONITOR_SCREENLOCK_MONITOR_SOURCE_H_
#define CONTENT_BROWSER_SCREENLOCK_MONITOR_SCREENLOCK_MONITOR_SOURCE_H_
#include "content/common/content_export.h"
namespace content {
class CONTENT_EXPORT ScreenlockMonitorSource {
public:
ScreenlockMonitorSource();
ScreenlockMonitorSource(const ScreenlockMonitorSource&) = delete;
ScreenlockMonitorSource& operator=(const ScreenlockMonitorSource&) = delete;
virtual ~ScreenlockMonitorSource();
enum ScreenlockEvent { SCREEN_LOCK_EVENT, SCREEN_UNLOCK_EVENT };
static void ProcessScreenlockEvent(ScreenlockEvent event_id);
};
}
#endif