[Title] Fix the wrong parameter of ewkViewGetWindowFrame().
[Issue#]: N/A
[Problem] getWindowFrame() does not work.
[Cause] The first parameter of getWindowFrame() should be ewk_view, but the PageUIClient is set.
[Solution] Set ewk_view for the first parameter of ewkViewGetWindowFrame().
Change-Id: Ie697df42e0e0ffb4992d65f0737e7c6aa29e15c0
int x, y, width, height;
#if ENABLE(TIZEN_VIEWPORT_META_TAG)
- ewkViewGetWindowFrame(static_cast<Evas_Object*>(const_cast<void*>(clientInfo)), &x, &y, &width, &height);
+ ewkViewGetWindowFrame(toPageUIClientEfl(clientInfo)->m_viewImpl->view(), &x, &y, &width, &height);
return WKRectMake(x, y, width, height);
#endif
Ecore_Evas* ee = ecore_evas_ecore_evas_get(evas_object_evas_get(toPageUIClientEfl(clientInfo)->m_viewImpl->view()));