use of org.chromium.content.browser.ContentVideoView in project AndroidChromium by JackyAndroid.
the class ChromeFullscreenManager method onWindowFocusChanged.
@Override
public void onWindowFocusChanged(Activity activity, boolean hasFocus) {
if (mActivity != activity)
return;
onWindowFocusChanged(hasFocus);
ContentVideoView videoView = ContentVideoView.getContentVideoView();
if (videoView != null) {
videoView.onFullscreenWindowFocused();
}
}
Aggregations