[Tizen][Legacy][Svace] Remove useless API at VideoView - WidthForHeight / HeightForWidth
[platform/core/uifw/dali-toolkit-legacy.git] / dali-toolkit / internal / controls / video-view / video-view-impl.cpp
index d85be9a..e1b2f06 100755 (executable)
@@ -583,30 +583,6 @@ Vector3 VideoView::GetNaturalSize()
   }
 }
 
-float VideoView::GetHeightForWidth( float width )
-{
-  if( mVideoSize.GetWidth() > 0 && mVideoSize.GetHeight() > 0 )
-  {
-    return GetHeightForWidthBase( width );
-  }
-  else
-  {
-    return Control::GetHeightForWidthBase( width );
-  }
-}
-
-float VideoView::GetWidthForHeight( float height )
-{
-  if( mVideoSize.GetWidth() > 0 && mVideoSize.GetHeight() > 0 )
-  {
-    return GetWidthForHeightBase( height );
-  }
-  else
-  {
-    return Control::GetWidthForHeightBase( height );
-  }
-}
-
 void VideoView::SetWindowSurfaceTarget()
 {
   Actor self = Self();