#ifndef UI_EVENTS_DEVICES_INPUT_DEVICE_OBSERVER_ANDROID_H_
#define UI_EVENTS_DEVICES_INPUT_DEVICE_OBSERVER_ANDROID_H_
#include <jni.h>
#include "base/observer_list.h"
#include "ui/events/devices/input_device_event_observer.h"
namespace base {
template <typename T>
struct DefaultSingletonTraits;
}
namespace ui {
class EVENTS_DEVICES_EXPORT InputDeviceObserverAndroid {
public:
static InputDeviceObserverAndroid* GetInstance();
InputDeviceObserverAndroid(const InputDeviceObserverAndroid&) = delete;
InputDeviceObserverAndroid& operator=(const InputDeviceObserverAndroid&) =
delete;
~InputDeviceObserverAndroid();
void AddObserver(ui::InputDeviceEventObserver* observer);
void RemoveObserver(ui::InputDeviceEventObserver* observer);
void NotifyObserversDeviceConfigurationChanged();
private:
InputDeviceObserverAndroid();
base::ObserverList<ui::InputDeviceEventObserver>::Unchecked observers_;
friend struct base::DefaultSingletonTraits<InputDeviceObserverAndroid>;
};
}
#endif