summaryrefslogtreecommitdiff
path: root/phone/com/android/internal/policy/impl/PhoneWindowManager.java
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-02-12 16:02:27 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2010-02-12 16:02:27 -0800
commitafb01e052b0309161aff00c02e732f1a5cd9aafb (patch)
tree635762375794d4dca71200ccbfa07dba42faa64f /phone/com/android/internal/policy/impl/PhoneWindowManager.java
parent91971c370fc87252bcf35d1d9f57c56e7c2360a7 (diff)
parent794841710d11f59fd1736d1c889cc9b91f38f78e (diff)
downloadbase-afb01e052b0309161aff00c02e732f1a5cd9aafb.tar.gz
am 79484171: am f010b5d2: Change EndCallBehavior while in UTS test mode.
Merge commit '794841710d11f59fd1736d1c889cc9b91f38f78e' * commit '794841710d11f59fd1736d1c889cc9b91f38f78e': Change EndCallBehavior while in UTS test mode.
Diffstat (limited to 'phone/com/android/internal/policy/impl/PhoneWindowManager.java')
-rwxr-xr-xphone/com/android/internal/policy/impl/PhoneWindowManager.java25
1 files changed, 15 insertions, 10 deletions
diff --git a/phone/com/android/internal/policy/impl/PhoneWindowManager.java b/phone/com/android/internal/policy/impl/PhoneWindowManager.java
index c879ece..ba5ea74 100755
--- a/phone/com/android/internal/policy/impl/PhoneWindowManager.java
+++ b/phone/com/android/internal/policy/impl/PhoneWindowManager.java
@@ -2339,16 +2339,21 @@ public class PhoneWindowManager implements WindowManagerPolicy {
// This code brings home to the front or, if it is already
// at the front, puts the device to sleep.
try {
- ActivityManagerNative.getDefault().stopAppSwitches();
- sendCloseSystemWindows();
- Intent dock = createHomeDockIntent();
- if (dock != null) {
- int result = ActivityManagerNative.getDefault()
- .startActivity(null, dock,
- dock.resolveTypeIfNeeded(mContext.getContentResolver()),
- null, 0, null, null, 0, true /* onlyIfNeeded*/, false);
- if (result == IActivityManager.START_RETURN_INTENT_TO_CALLER) {
- return false;
+ if (SystemProperties.getInt("persist.sys.uts-test-mode", 0) == 1) {
+ /// Roll back EndcallBehavior as the cupcake design to pass P1 lab entry.
+ Log.d(TAG, "UTS-TEST-MODE");
+ } else {
+ ActivityManagerNative.getDefault().stopAppSwitches();
+ sendCloseSystemWindows();
+ Intent dock = createHomeDockIntent();
+ if (dock != null) {
+ int result = ActivityManagerNative.getDefault()
+ .startActivity(null, dock,
+ dock.resolveTypeIfNeeded(mContext.getContentResolver()),
+ null, 0, null, null, 0, true /* onlyIfNeeded*/, false);
+ if (result == IActivityManager.START_RETURN_INTENT_TO_CALLER) {
+ return false;
+ }
}
}
int result = ActivityManagerNative.getDefault()