| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| index c7b023106d809df67b0195d3dcb1ba0909f8e675..06de1fdcc55e0f849ccf8ab565e1b91e2c6f8b8c 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewClient.java
|
| @@ -154,6 +154,15 @@ public class ContentViewClient {
|
| }
|
|
|
| /**
|
| + * @return Whether javascript is enabled by the embedder.
|
| + */
|
| + // TODO(tedchoc): Only used for ICS accessibility injection, so remove this method when
|
| + // that is no longer needed.
|
| + public boolean isJavascriptEnabled() {
|
| + return true;
|
| + }
|
| +
|
| + /**
|
| * Check whether a key should be propagated to the embedder or not.
|
| * We need to send almost every key to Blink. However:
|
| * 1. We don't want to block the device on the renderer for
|
|
|