1 // Copyright 2022 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/android/base_features.h" 6 #include "base/feature_list.h" 7 8 namespace base::android::features { 9 10 // Alphabetical: 11 12 // When the browser process has been in the background for several minutes at a 13 // time, trigger an artificial critical memory pressure notification. This is 14 // intended to reduce memory footprint. 15 BASE_FEATURE(kBrowserProcessMemoryPurge, 16 "BrowserProcessMemoryPurge", 17 FEATURE_ENABLED_BY_DEFAULT); 18 19 } // namespace base::android::features 20