Upload upstream chromium 120.0.6099.5
[platform/framework/web/chromium-efl.git] / sql / sql_features.h
1 // Copyright 2018 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 SQL_SQL_FEATURES_H_
6 #define SQL_SQL_FEATURES_H_
7
8 #include "base/component_export.h"
9 #include "base/feature_list.h"
10
11 namespace sql::features {
12
13 // All features in alphabetical order, grouped by buildflag. The features should
14 // be documented alongside the definition of their values in the .cc file.
15
16 // Alphabetical:
17 COMPONENT_EXPORT(SQL) BASE_DECLARE_FEATURE(kConsiderPoisonedDatabasesClosed);
18 COMPONENT_EXPORT(SQL) BASE_DECLARE_FEATURE(kEnableWALModeByDefault);
19 COMPONENT_EXPORT(SQL) BASE_DECLARE_FEATURE(kUseBuiltInRecoveryIfSupported);
20
21 }  // namespace sql::features
22
23 #endif  // SQL_SQL_FEATURES_H_