sql_features.cc 478 B

1234567891011121314151617
  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. #include "sql/sql_features.h"
  5. namespace sql {
  6. namespace features {
  7. // Enable WAL mode for all SQLite databases.
  8. const base::Feature kEnableWALModeByDefault{"EnableWALModeByDefault",
  9. base::FEATURE_DISABLED_BY_DEFAULT};
  10. } // namespace features
  11. } // namespace sql