summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Huahui Wu <hwu@google.com> 2010-12-14 13:45:28 -0800
committer Huahui Wu <hwu@google.com> 2010-12-15 15:00:03 -0800
commite2975f17ccd87399ecbc7b4c0ee93253706a9b6f (patch)
treee825c27dd4256d017fc0c231368e455fa95592fd
parentebf90ac7a82c9a0fa5c02702ccba36bc5082240f (diff)
b/2946595 Remove the touch events filter upon maps.google.com team's request.
Change-Id: I83966bc447f67abdce47a77cb682bc3e834184c3
-rw-r--r--core/java/android/webkit/WebView.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index 5f47a2d6822d..bbfcc087a723 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -432,8 +432,10 @@ public class WebView extends AbsoluteLayout
* to further, which slows down the refresh rate. Choose 50 to favor the
* current high speed devices. For Dream like devices, 100 is a better
* choice. Maybe make this in the buildspec later.
+ * (Update 12/14/2010: changed to 0 since current device should be able to
+ * handle the raw events and Map team voted to have the raw events too.
*/
- private static final int TOUCH_SENT_INTERVAL = 50;
+ private static final int TOUCH_SENT_INTERVAL = 0;
private int mCurrentTouchInterval = TOUCH_SENT_INTERVAL;
/**