diff options
Diffstat (limited to 'chromium/base/feature_list.cc')
-rw-r--r-- | chromium/base/feature_list.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/base/feature_list.cc b/chromium/base/feature_list.cc index 30d609505a7..3b8636c2849 100644 --- a/chromium/base/feature_list.cc +++ b/chromium/base/feature_list.cc @@ -321,6 +321,9 @@ void FeatureList::SetInstance(std::unique_ptr<FeatureList> instance) { #if defined(DCHECK_IS_CONFIGURABLE) // Update the behaviour of LOG_DCHECK to match the Feature configuration. // DCHECK is also forced to be FATAL if we are running a death-test. + // TODO(crbug.com/1057995#c11): --gtest_internal_run_death_test doesn't + // currently run through this codepath, mitigated in + // base::TestSuite::Initialize() for now. // TODO(asvitkine): If we find other use-cases that need integrating here // then define a proper API/hook for the purpose. if (FeatureList::IsEnabled(kDCheckIsFatalFeature) || |