Victor Costan | 4c2f3e92 | 2018-08-21 04:47:59 | [diff] [blame] | 1 | // Copyright 2018 The Chromium Authors. All rights reserved. |
| 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 | |
Victor Costan | e56cc68 | 2018-12-27 01:53:46 | [diff] [blame] | 8 | #include "base/component_export.h" |
Victor Costan | 4c2f3e92 | 2018-08-21 04:47:59 | [diff] [blame] | 9 | #include "base/feature_list.h" |
Victor Costan | 4c2f3e92 | 2018-08-21 04:47:59 | [diff] [blame] | 10 | |
| 11 | namespace sql { |
| 12 | |
| 13 | namespace features { |
| 14 | |
Victor Costan | 3ffd9a37 | 2019-05-22 00:46:54 | [diff] [blame] | 15 | COMPONENT_EXPORT(SQL) extern const base::Feature kSqlSkipPreload; |
Victor Costan | 4c2f3e92 | 2018-08-21 04:47:59 | [diff] [blame] | 16 | |
Shubham Aggarwal | be4f97ce | 2020-06-19 15:58:57 | [diff] [blame^] | 17 | COMPONENT_EXPORT(SQL) extern const base::Feature kEnableWALModeByDefault; |
| 18 | |
Victor Costan | 4c2f3e92 | 2018-08-21 04:47:59 | [diff] [blame] | 19 | } // namespace features |
| 20 | |
| 21 | } // namespace sql |
| 22 | |
| 23 | #endif // SQL_SQL_FEATURES_H_ |