Dialer: InCallUI: Enable Sustained Performance Mode

We should make sure that thermals are stable during
active calls, so we should enable Sustained Performance
Mode for the InCallActivity.

As a side effect this will also save power during active
calls.

Change-Id: I06276b702ab17d220e0b028e92bde53956ce43a0
Signed-off-by: Alex Naidis <alex.naidis@linux.com>
diff --git a/InCallUI/src/com/android/incallui/InCallActivity.java b/InCallUI/src/com/android/incallui/InCallActivity.java
index 81c19a4..731671b 100644
--- a/InCallUI/src/com/android/incallui/InCallActivity.java
+++ b/InCallUI/src/com/android/incallui/InCallActivity.java
@@ -196,6 +196,10 @@
                 | WindowManager.LayoutParams.FLAG_IGNORE_CHEEK_PRESSES;
 
         getWindow().addFlags(flags);
+
+        // Enable Sustained Performance Mode
+        getWindow().setSustainedPerformanceMode(true);
+
         boolean isDsdaEnabled = CallList.getInstance().isDsdaEnabled();
         if (isDsdaEnabled) {
             requestWindowFeature(Window.FEATURE_ACTION_BAR);