Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core_internal / src / org / xwalk / core / internal / XWalkContentsClient.java
index ac71fc6..3fcfb89 100644 (file)
@@ -164,18 +164,16 @@ abstract class XWalkContentsClient extends ContentViewClient {
 
     protected abstract void onCloseWindow();
 
-    public abstract void onReceivedTouchIconUrl(String url, boolean precomposed);
-
     public abstract void onReceivedIcon(Bitmap bitmap);
 
     protected abstract void onRequestFocus();
 
-    protected abstract View getVideoLoadingProgressView();
-
     public abstract void onPageStarted(String url);
 
     public abstract void onPageFinished(String url);
 
+    protected abstract void onStopLoading();
+
     public abstract void onReceivedError(int errorCode, String description, String failingUrl);
 
     public abstract void onRendererUnresponsive();
@@ -205,8 +203,6 @@ abstract class XWalkContentsClient extends ContentViewClient {
 
     public abstract void onHideCustomView();
 
-    public abstract Bitmap getDefaultVideoPoster();
-
     public abstract void didFinishLoad(String url);
 
     //--------------------------------------------------------------------------------------------
@@ -221,4 +217,6 @@ abstract class XWalkContentsClient extends ContentViewClient {
      * @param picture New picture.
      */
     public abstract void onNewPicture(Picture picture);
+
+    public abstract boolean shouldOpenWithDefaultBrowser(String contentUrl);
 }