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

Commit cf456e3c authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android (Google) Code Review
Browse files

Merge "Fix issue #17574819: Chrome browser process is killed in background..." into lmp-dev

parents cfb67ee4 0fe3c256
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2119,7 +2119,8 @@ public final class ActiveServices {
                    boolean hasCreate = false;
                    for (int conni=abind.connections.size()-1; conni>=0; 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;
                            break;
                        }