blob: 76c4a63c07e23d4a8bdba475217db0cd02f523aa [file] [log] [blame]
Victor Costan4c2f3e922018-08-21 04:47:591// 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 Costane56cc682018-12-27 01:53:468#include "base/component_export.h"
Victor Costan4c2f3e922018-08-21 04:47:599#include "base/feature_list.h"
Victor Costan4c2f3e922018-08-21 04:47:5910
11namespace sql {
12
13namespace features {
14
Victor Costan3ffd9a372019-05-22 00:46:5415COMPONENT_EXPORT(SQL) extern const base::Feature kSqlSkipPreload;
Victor Costan4c2f3e922018-08-21 04:47:5916
Shubham Aggarwalbe4f97ce2020-06-19 15:58:5717COMPONENT_EXPORT(SQL) extern const base::Feature kEnableWALModeByDefault;
18
Victor Costan4c2f3e922018-08-21 04:47:5919} // namespace features
20
21} // namespace sql
22
23#endif // SQL_SQL_FEATURES_H_