Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 44c49d92 authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am 77817a6b: am 4b091802: am 3ed0079f: am 8a9df5a2: Merge "Fix issue...

am 77817a6b: am 4b091802: am 3ed0079f: am 8a9df5a2: Merge "Fix issue #17574819: Chrome browser process is killed in background..." into lmp-dev

* commit '77817a6b4e3bf133505e079de654afff0ba25b0d':
  Fix issue #17574819: Chrome browser process is killed in background...
parents 5dc8f3ff a0e661ee
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -2119,7 +2119,8 @@ public final class ActiveServices {
                    boolean hasCreate = false;
                    boolean hasCreate = false;
                    for (int conni=abind.connections.size()-1; conni>=0; conni--) {
                    for (int conni=abind.connections.size()-1; conni>=0; conni--) {
                        ConnectionRecord conn = abind.connections.valueAt(conni);
                        ConnectionRecord conn = abind.connections.valueAt(conni);
                        if ((conn.flags&Context.BIND_AUTO_CREATE) != 0) {
                        if ((conn.flags&(Context.BIND_AUTO_CREATE|Context.BIND_ALLOW_OOM_MANAGEMENT
                                |Context.BIND_WAIVE_PRIORITY)) == Context.BIND_AUTO_CREATE) {
                            hasCreate = true;
                            hasCreate = true;
                            break;
                            break;
                        }
                        }