Fix emulator build error
[platform/framework/web/chromium-efl.git] / base / android / base_features.h
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 #ifndef BASE_ANDROID_BASE_FEATURES_H_
6 #define BASE_ANDROID_BASE_FEATURES_H_
7
8 #include "base/feature_list.h"
9
10 namespace base::android::features {
11
12 // All features in alphabetical order. The features should be documented
13 // alongside the definition of their values in the .cc file.
14
15 // Alphabetical:
16 BASE_DECLARE_FEATURE(kBrowserProcessMemoryPurge);
17 BASE_DECLARE_FEATURE(kCrashBrowserOnChildMismatchIfBrowserChanged);
18 BASE_DECLARE_FEATURE(kCrashBrowserOnAnyChildMismatch);
19
20 }  // namespace base::android::features
21
22 #endif  // BASE_ANDROID_BASE_FEATURES_H_