From e601fc3ff0c6077b2861aed0db5b875b50f5954e Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Thu, 25 Feb 2021 14:07:12 -0800 Subject: [PATCH] chore: fix TODO --- shell/browser/net/network_context_service.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/shell/browser/net/network_context_service.cc b/shell/browser/net/network_context_service.cc index 8be77545c7780..d0df74f7788f0 100644 --- a/shell/browser/net/network_context_service.cc +++ b/shell/browser/net/network_context_service.cc @@ -77,7 +77,8 @@ void NetworkContextService::ConfigureNetworkContextParams( network_context_params->restore_old_session_cookies = false; network_context_params->persist_session_cookies = false; - // TODO: Make it possible to enable cookie encryption on non-macOS platforms + // TODO(MarshallOfSound): Make it possible to enable cookie encryption on + // non-macOS platforms #if defined(OS_MAC) network_context_params->enable_encrypted_cookies = electron::fuses::IsCookieEncryptionEnabled();