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

Commit 4ed9ab51 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

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

parents fa515155 0b0c9dc8
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);