Upstream version 11.39.250.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core_internal / src / org / xwalk / core / internal / XWalkContentsClientBridge.java
index aebad33..f8b2618 100644 (file)
@@ -426,6 +426,14 @@ class XWalkContentsClientBridge extends XWalkContentsClient
     }
 
     @Override
+    public void onShowCustomView(View view, int requestedOrientation,
+            XWalkWebChromeClient.CustomViewCallback callback) {
+        if (mXWalkWebChromeClient != null && isOwnerActivityRunning()) {
+            mXWalkWebChromeClient.onShowCustomView(view, requestedOrientation, callback);
+        }
+    }
+
+    @Override
     public void onHideCustomView() {
         if (mXWalkWebChromeClient != null && isOwnerActivityRunning()) {
             mXWalkWebChromeClient.onHideCustomView();