[M120 Migration][NUI] Add internal mouse event API for NUI.
[platform/framework/web/chromium-efl.git] / tizen_src / chromium_impl / content / browser / renderer_host / rwhv_aura_common_helper_efl.h
index 55e9235..4a3367f 100644 (file)
@@ -120,6 +120,11 @@ class CONTENT_EXPORT RWHVAuraCommonHelperEfl {
   }
   void SetTouchEventsEnabled(bool enabled);
   bool TouchEventsEnabled();
+  void SendMouseDown(int button, int x, int y);
+  void SendMouseUp(int button, int x, int y);
+  void SendMouseMove(int x, int y);
+  void SendMouseWheel(bool y_direction, int step, int x, int y);
+  void SendMouseOut();
   bool IsFocusedNodeContentEditable() const { return is_content_editable_; }
 
   void SetKeyEventsEnabled(bool enabled);