summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/answerproximitysensor
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2017-10-24 22:41:00 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-10-24 22:41:00 +0000
commitdaa1c44c00f3c598223639c9b80a52cf41db51ba (patch)
treee4c88a1862b157dc858abe73e52b077bf7b96948 /java/com/android/incallui/answerproximitysensor
parentef7338cf787301c573fde8129bf8880d7faba040 (diff)
parent938468da6f5c225ebb161a68bd949c9cf3261892 (diff)
Merge "Rename the new bubble package name from "bubble" to "newbubble"."
Diffstat (limited to 'java/com/android/incallui/answerproximitysensor')
-rw-r--r--java/com/android/incallui/answerproximitysensor/AnswerProximitySensor.java4
-rw-r--r--java/com/android/incallui/answerproximitysensor/PseudoScreenState.java2
2 files changed, 3 insertions, 3 deletions
diff --git a/java/com/android/incallui/answerproximitysensor/AnswerProximitySensor.java b/java/com/android/incallui/answerproximitysensor/AnswerProximitySensor.java
index 113144b7f..50f6ae695 100644
--- a/java/com/android/incallui/answerproximitysensor/AnswerProximitySensor.java
+++ b/java/com/android/incallui/answerproximitysensor/AnswerProximitySensor.java
@@ -90,8 +90,8 @@ public class AnswerProximitySensor
} else {
// TODO(twyen): choose a wake lock implementation base on framework/device.
// These bugs requires the PseudoProximityWakeLock workaround:
- // b/30439151 Proximity sensor not working on M
- // b/31499931 fautly touch input when screen is off on marlin/sailfish
+ // a bug Proximity sensor not working on M
+ // a bug fautly touch input when screen is off on marlin/sailfish
answerProximityWakeLock = new SystemProximityWakeLock(context);
}
answerProximityWakeLock.setScreenOnListener(this);
diff --git a/java/com/android/incallui/answerproximitysensor/PseudoScreenState.java b/java/com/android/incallui/answerproximitysensor/PseudoScreenState.java
index eda0ee720..676a1a3cc 100644
--- a/java/com/android/incallui/answerproximitysensor/PseudoScreenState.java
+++ b/java/com/android/incallui/answerproximitysensor/PseudoScreenState.java
@@ -27,7 +27,7 @@ import java.util.Set;
* new DOWN event once the point started moving and then behave as a normal gesture. To prevent
* accidental answer/rejects, touches that started when the screen is off should be ignored.
*
- * <p>b/31499931 on certain devices with N-DR1, if the screen is already touched when the screen is
+ * <p>a bug on certain devices with N-DR1, if the screen is already touched when the screen is
* turned on, a "DOWN MOVE UP" will be sent for each movement before the touch is actually released.
* These events is hard to discern from other normal events, and keeping the screen on reduces its'
* probability.