remoting::GetDefaultSecurityKeySocketName());Is this really needed, given the default behavior of `SecurityKeyAuthHandlerPosix::GetSecurityKeySocketName()` is to return `GetDefaultSecurityKeySocketName()`?
security_key_auth_handler_ =Please restore the deleted comment and update it to reflect the change.
base::Lock& GetLock() {Maybe call it `GetGlobalResourceLock()` to make it more descriptive.
scoped_refptr<base::SequencedTaskRunner> GetFileTaskRunner() {Comment about why we need a global file task runner, i.e. to prevent race condition when deleting files.
{base::MayBlock(), base::TaskPriority::USER_VISIBLE,Does it really need to be `USER_VISIBLE`? It is just to delete the socket file during cleanup after all?
#if BUILDFLAG(IS_POSIX)Move this below, after all the all-platform includes.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Is this really needed, given the default behavior of `SecurityKeyAuthHandlerPosix::GetSecurityKeySocketName()` is to return `GetDefaultSecurityKeySocketName()`?
Done
Please restore the deleted comment and update it to reflect the change.
Done
Maybe call it `GetGlobalResourceLock()` to make it more descriptive.
Done
scoped_refptr<base::SequencedTaskRunner> GetFileTaskRunner() {Comment about why we need a global file task runner, i.e. to prevent race condition when deleting files.
Done
Does it really need to be `USER_VISIBLE`? It is just to delete the socket file during cleanup after all?
Done
Move this below, after all the all-platform includes.
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |