VideoView::GetWidthForHeight and VideoView::GetHeightForWidth
did exactly same jobs as Control::~~~For~~~. So just erase it.
Change-Id: I1245cb134cac9802f2cd16a3e54192a48d5486f7
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
}
}
-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();
*/
virtual Vector3 GetNaturalSize();
- /**
- * @copydoc Toolkit::Control::GetHeightForWidth()
- */
- virtual float GetHeightForWidth( float width );
-
- /**
- * @copydoc Toolkit::Control::GetWidthForHeight()
- */
- virtual float GetWidthForHeight( float height );
-
private:
/**