[Crosswalk] Add extra EWK_BRINGUP guards for unsupported calls.
authorAntonio Gomes <a1.gomes@samsung.com>
Mon, 10 Nov 2014 04:03:15 +0000 (20:03 -0800)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Change-Id: I1a9392cdeb447d5709ea6f67572878f098589721
Signed-off-by: Piotr Tworek <p.tworek@samsung.com>
tizen_src/impl/eweb_view.cc

index 90f56fd..2dfb0d9 100644 (file)
@@ -1497,7 +1497,9 @@ void EWebView::SelectLinkText(const gfx::Point& touch_point) {
   float device_scale_factor = gfx::Screen::GetNativeScreen()->
       GetPrimaryDisplay().device_scale_factor();
   RenderViewHost* render_view_host = web_contents_->GetRenderViewHost();
+#if !defined(EWK_BRINGUP)
   render_view_host->Send(new ViewMsg_SelectLinkText(render_view_host->GetRoutingID(), gfx::Point(touch_point.x() / device_scale_factor, touch_point.y() / device_scale_factor)));
+#endif
 }
 
 bool EWebView::GetSelectionRange(Eina_Rectangle* left_rect, Eina_Rectangle* right_rect) {