summaryrefslogtreecommitdiff
path: root/chromium/sql/initialization.h
blob: 01eca433ef5a464a03ee5e515ff49037e0a7cedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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.

#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_