| Index: content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentView.java b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| index 66ef19436eae704189fc8350e0eccd10cd80d8f2..396b37bf4435b3b29d727a1ce3599edbb05bd9aa 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentView.java
|
| @@ -119,7 +119,10 @@ public class ContentView extends FrameLayout
|
| super(context, attrs, defStyle);
|
|
|
| mContentViewCore = new ContentViewCore(context);
|
| - mContentViewCore.initialize(this, this, nativeWebContents, windowAndroid);
|
| + mContentViewCore.initialize(this, this, nativeWebContents, windowAndroid,
|
| + Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN ?
|
| + ContentViewCore.INPUT_EVENTS_DELIVERED_AT_VSYNC :
|
| + ContentViewCore.INPUT_EVENTS_DELIVERED_IMMEDIATELY);
|
| }
|
|
|
| // PageInfo implementation.
|
|
|