| Index: remoting/client/plugin/pepper_input_handler.h
|
| diff --git a/remoting/client/plugin/pepper_input_handler.h b/remoting/client/plugin/pepper_input_handler.h
|
| index cacfd9dbade9f29b3ba018fbcb8bbf34364d8e8a..48d85c264a448a488c25e4940d03a8d6e18d7129 100644
|
| --- a/remoting/client/plugin/pepper_input_handler.h
|
| +++ b/remoting/client/plugin/pepper_input_handler.h
|
| @@ -28,7 +28,7 @@ class PepperInputHandler : public pp::MouseLock {
|
| public:
|
| // |instance| must outlive |this|.
|
| explicit PepperInputHandler(pp::Instance* instance);
|
| - virtual ~PepperInputHandler();
|
| + ~PepperInputHandler() override;
|
|
|
| void set_input_stub(protocol::InputStub* input_stub) {
|
| input_stub_ = input_stub;
|
| @@ -64,7 +64,7 @@ class PepperInputHandler : public pp::MouseLock {
|
| };
|
|
|
| // pp::MouseLock interface.
|
| - virtual void MouseLockLost() override;
|
| + void MouseLockLost() override;
|
|
|
| // Requests the browser to lock the mouse and hides the cursor.
|
| void RequestMouseLock();
|
|
|