| Index: content/browser/web_contents/web_contents_android.cc
|
| diff --git a/content/browser/web_contents/web_contents_android.cc b/content/browser/web_contents/web_contents_android.cc
|
| index defe5abddb5682283d82007a796f7fb625d58f2d..c654f11da9d229ed3ba5cb997bc64051b3149988 100644
|
| --- a/content/browser/web_contents/web_contents_android.cc
|
| +++ b/content/browser/web_contents/web_contents_android.cc
|
| @@ -382,11 +382,11 @@ void WebContentsAndroid::ResumeLoadingCreatedWebContents(
|
| }
|
|
|
| void WebContentsAndroid::OnHide(JNIEnv* env, const JavaParamRef<jobject>& obj) {
|
| - web_contents_->WasHidden();
|
| + static_cast<WebContentsImpl*>(web_contents_)->WasHidden();
|
| }
|
|
|
| void WebContentsAndroid::OnShow(JNIEnv* env, const JavaParamRef<jobject>& obj) {
|
| - web_contents_->WasShown();
|
| + static_cast<WebContentsImpl*>(web_contents_)->WasShown();
|
| }
|
|
|
| void WebContentsAndroid::SuspendAllMediaPlayers(
|
|
|