| Index: content/browser/android/content_video_view.cc
|
| diff --git a/content/browser/android/content_video_view.cc b/content/browser/android/content_video_view.cc
|
| index f7e9fc891a4934388c8c5f1411b90f1929a7836f..5407032441b88f611314eb03f9ebfed5947b437b 100644
|
| --- a/content/browser/android/content_video_view.cc
|
| +++ b/content/browser/android/content_video_view.cc
|
| @@ -127,7 +127,8 @@ void ContentVideoView::UpdateMediaMetadata() {
|
| if (player && player->IsPlayerReady()) {
|
| Java_ContentVideoView_onUpdateMediaMetadata(
|
| env, content_video_view.obj(), player->GetVideoWidth(),
|
| - player->GetVideoHeight(), player->GetDuration().InMilliseconds(),
|
| + player->GetVideoHeight(),
|
| + static_cast<int>(player->GetDuration().InMilliseconds()),
|
| player->CanPause(),player->CanSeekForward(), player->CanSeekBackward());
|
| }
|
| }
|
|
|