23 lines
698 B
C++
23 lines
698 B
C++
// Copyright 2022 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef BASE_ANDROID_BASE_FEATURES_H_
|
|
#define BASE_ANDROID_BASE_FEATURES_H_
|
|
|
|
#include "base/feature_list.h"
|
|
|
|
namespace base::android::features {
|
|
|
|
// All features in alphabetical order. The features should be documented
|
|
// alongside the definition of their values in the .cc file.
|
|
|
|
// Alphabetical:
|
|
BASE_DECLARE_FEATURE(kBrowserProcessMemoryPurge);
|
|
BASE_DECLARE_FEATURE(kCrashBrowserOnChildMismatchIfBrowserChanged);
|
|
BASE_DECLARE_FEATURE(kCrashBrowserOnAnyChildMismatch);
|
|
|
|
} // namespace base::android::features
|
|
|
|
#endif // BASE_ANDROID_BASE_FEATURES_H_
|