summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java b/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
index c340073..5806319 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/test/NullContentsClient.java
@@ -4,7 +4,6 @@
package org.chromium.android_webview.test;
-import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Picture;
import android.net.http.SslError;
@@ -174,4 +173,9 @@ public class NullContentsClient extends AwContentsClient {
protected View getVideoLoadingProgressView() {
return null;
}
+
+ @Override
+ public Bitmap getDefaultVideoPoster() {
+ return null;
+ }
}