Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / remoting / protocol / input_filter.h
index 5384ade..1b7c211 100644 (file)
@@ -19,7 +19,7 @@ class InputFilter : public InputStub {
  public:
   InputFilter();
   explicit InputFilter(InputStub* input_stub);
-  virtual ~InputFilter();
+  ~InputFilter() override;
 
   // Set the InputStub that events will be forwarded to.
   void set_input_stub(InputStub* input_stub) {
@@ -35,9 +35,9 @@ class InputFilter : public InputStub {
   }
 
   // InputStub interface.
-  virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE;
-  virtual void InjectTextEvent(const TextEvent& event) OVERRIDE;
-  virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE;
+  void InjectKeyEvent(const KeyEvent& event) override;
+  void InjectTextEvent(const TextEvent& event) override;
+  void InjectMouseEvent(const MouseEvent& event) override;
 
  private:
   InputStub* input_stub_;