Chromium Code Reviews| Index: android_webview/glue/java/src/com/android/webview/chromium/ContentSettingsAdapter.java |
| diff --git a/android_webview/glue/java/src/com/android/webview/chromium/ContentSettingsAdapter.java b/android_webview/glue/java/src/com/android/webview/chromium/ContentSettingsAdapter.java |
| index 1826e78e33985d3691527c2559ed28d812ffce22..591f699bd50239c7b993c78d0951ae5f5238eeab 100644 |
| --- a/android_webview/glue/java/src/com/android/webview/chromium/ContentSettingsAdapter.java |
| +++ b/android_webview/glue/java/src/com/android/webview/chromium/ContentSettingsAdapter.java |
| @@ -584,6 +584,16 @@ public class ContentSettingsAdapter extends android.webkit.WebSettings { |
| return mAwSettings.getMixedContentMode(); |
| } |
| + // TODO(hush):add @Override later |
|
boliu
2015/03/02 19:17:17
I advocate getting rid of all @Overrides here inst
hush (inactive)
2015/03/02 19:26:27
Okay. I'm not going to add any more.
|
| + public void setOffscreenPreRaster(boolean enabled) { |
| + return mAwSettings.setOffscreenPreRaster(enabled); |
|
boliu
2015/03/02 19:17:17
Don't return void
hush (inactive)
2015/03/02 19:26:27
Done.
|
| + } |
| + |
| + // TODO(hush):add @Override later |
| + public boolean getOffscreenPreRaster() { |
| + return mAwSettings.getOffscreenPreRaster(); |
| + } |
| + |
| @Override |
| public void setVideoOverlayForEmbeddedEncryptedVideoEnabled(boolean flag) { |
| mAwSettings.setVideoOverlayForEmbeddedVideoEnabled(flag); |