Android: AccountsChangedReceiver and SigninHelper explicitly using SERIAL_EXECUTOR
Currently, AsyncTask.execute() defaults to the SERIAL_EXECUTOR. This exector is good for preventing concurrency errors since it guarantees serial execution, but bad for performance since the entire app shares this single queue. It looks like these callsites are stuck with the SERIAL_EXECUTOR, since they both call updateAccountRenameData() which is not thread safe. Bug: 869907 Change-Id: I23ac4430cd10acb61842ee1b37c36d8c36f0f8af Reviewed-on: https://chromium-review.googlesource.com/1161092Reviewed-by:Boris Sazonov <bsazonov@chromium.org> Reviewed-by:
Ted Choc <tedchoc@chromium.org> Commit-Queue: Sam Maier <smaier@chromium.org> Cr-Commit-Position: refs/heads/master@{#581283}
Showing
Please register or sign in to comment