#ifndef REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_
#define REMOTING_CLIENT_PLUGIN_PEPPER_INPUT_HANDLER_H_
#include "base/compiler_specific.h"
#include "remoting/protocol/input_stub.h"
namespace pp {
class InputEvent;
}
namespace remoting {
namespace protocol {
class InputStub;
}
class PepperInputHandler {
public:
explicit PepperInputHandler(protocol::InputStub* input_stub);
virtual ~PepperInputHandler();
bool HandleInputEvent(const pp::InputEvent& event);
private:
protocol::InputStub* input_stub_;
float wheel_ticks_x_;
float wheel_ticks_y_;
DISALLOW_COPY_AND_ASSIGN(PepperInputHandler);
};
}
#endif