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

Commit e3cc783d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Camera: Pass an executor during the extension characteristics service...

Merge "Camera: Pass an executor during the extension characteristics service bind call" into sc-dev am: 4ed9ab51

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14986715

Change-Id: I9e8097da498f14c4c06d03192d444c37517b430f
parents 396f8e78 4ed9ab51
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -270,9 +270,9 @@ public final class CameraExtensionCharacteristics {
                        }
                    }
                };
                ctx.bindService(intent, mConnection, Context.BIND_AUTO_CREATE |
                        Context.BIND_IMPORTANT | Context.BIND_ABOVE_CLIENT |
                        Context.BIND_NOT_VISIBLE);
                ctx.bindService(intent, Context.BIND_AUTO_CREATE | Context.BIND_IMPORTANT |
                        Context.BIND_ABOVE_CLIENT | Context.BIND_NOT_VISIBLE,
                        android.os.AsyncTask.THREAD_POOL_EXECUTOR, mConnection);

                try {
                    mInitFuture.get(PROXY_SERVICE_DELAY_MS, TimeUnit.MILLISECONDS);