
Bug: 1126640 Change-Id: I87de57b6c22c6b2f7bda8c6ca6a8b501436f863b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2435327 Reviewed-by: Victor Costan <pwnall@chromium.org> Reviewed-by: Mark Pearson <mpearson@chromium.org> Commit-Queue: Caitlin Fischer <caitlinfischer@google.com> Cr-Commit-Position: refs/heads/master@{#812006}
18 lines
478 B
C++
18 lines
478 B
C++
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "sql/sql_features.h"
|
|
|
|
namespace sql {
|
|
|
|
namespace features {
|
|
|
|
// Enable WAL mode for all SQLite databases.
|
|
const base::Feature kEnableWALModeByDefault{"EnableWALModeByDefault",
|
|
base::FEATURE_DISABLED_BY_DEFAULT};
|
|
|
|
} // namespace features
|
|
|
|
} // namespace sql
|