
The methodology used to generate this CL is documented in https://crbug.com/1098010#c95. No-Try: true Bug: 1098010 Change-Id: I68bb81a4dcae37f944f4d8cd39d82ed540364615 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3899461 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Owners-Override: Avi Drissman <avi@chromium.org> Cr-Commit-Position: refs/heads/main@{#1047607}
24 lines
663 B
C++
24 lines
663 B
C++
// Copyright 2018 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SQL_INITIALIZATION_H_
|
|
#define SQL_INITIALIZATION_H_
|
|
|
|
#include "base/component_export.h"
|
|
|
|
namespace sql {
|
|
|
|
// Makes sure that sqlite3_initialize() is called.
|
|
//
|
|
// Users of the APIs exposed in //sql do not need to worry about SQLite
|
|
// initialization, because sql::Database calls this function internally.
|
|
//
|
|
// The function is exposed for other components that use SQLite indirectly, such
|
|
// as Blink.
|
|
COMPONENT_EXPORT(SQL) void EnsureSqliteInitialized();
|
|
|
|
} // namespace sql
|
|
|
|
#endif // SQL_INITIALIZATION_H_
|