Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: sql/vfs_wrapper.h

Issue 2623083002: [sql] Move time-machine support from third_party/sqlite to sql/ (Closed)
Patch Set: scoped-ref in test, too, iwyu pass to remove leftover-from-prototype includes. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sql/sqlite_features_unittest.cc ('k') | sql/vfs_wrapper.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2017 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_VFS_WRAPPER_H_
6 #define SQL_VFS_WRAPPER_H_
7
8 #include "third_party/sqlite/sqlite3.h"
9
10 namespace sql {
11
12 // A wrapper around the default VFS.
13 //
14 // On OSX, the wrapper propagates Time Machine exclusions from the main database
15 // file to associated files such as journals. <http://crbug.com/23619> and
16 // <http://crbug.com/25959> and others.
17 //
18 // TODO(shess): On Windows, wrap xFetch() with a structured exception handler.
19 sqlite3_vfs* VFSWrapper();
20
21 } // namespace sql
22
23 #endif // SQL_VFS_WRAPPER_H_
OLDNEW
« no previous file with comments | « sql/sqlite_features_unittest.cc ('k') | sql/vfs_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698