24 lines
902 B
Diff
24 lines
902 B
Diff
|
From: csagan5 <32685696+csagan5@users.noreply.github.com>
|
||
|
Date: Sat, 5 Sep 2020 21:38:15 +0200
|
||
|
Subject: Hardening against incognito mode detection
|
||
|
|
||
|
License: GPL-3.0-only - https://spdx.org/licenses/GPL-3.0-only.html
|
||
|
---
|
||
|
storage/browser/quota/quota_settings.cc | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/storage/browser/quota/quota_settings.cc b/storage/browser/quota/quota_settings.cc
|
||
|
--- a/storage/browser/quota/quota_settings.cc
|
||
|
+++ b/storage/browser/quota/quota_settings.cc
|
||
|
@@ -60,7 +60,7 @@ absl::optional<QuotaSettings> CalculateNominalDynamicSettings(
|
||
|
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
|
||
|
base::BlockingType::MAY_BLOCK);
|
||
|
|
||
|
- if (is_incognito) {
|
||
|
+ if ((false) && is_incognito) {
|
||
|
return CalculateIncognitoDynamicSettings(
|
||
|
device_info_helper->AmountOfPhysicalMemory());
|
||
|
}
|
||
|
--
|
||
|
2.25.1
|