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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sql/sqlite_features_unittest.cc ('k') | sql/vfs_wrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/vfs_wrapper.h
diff --git a/sql/vfs_wrapper.h b/sql/vfs_wrapper.h
new file mode 100644
index 0000000000000000000000000000000000000000..0ff50e600c774f0f875933a9635766f4fec14eab
--- /dev/null
+++ b/sql/vfs_wrapper.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2017 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_VFS_WRAPPER_H_
+#define SQL_VFS_WRAPPER_H_
+
+#include "third_party/sqlite/sqlite3.h"
+
+namespace sql {
+
+// A wrapper around the default VFS.
+//
+// On OSX, the wrapper propagates Time Machine exclusions from the main database
+// file to associated files such as journals. <http://crbug.com/23619> and
+// <http://crbug.com/25959> and others.
+//
+// TODO(shess): On Windows, wrap xFetch() with a structured exception handler.
+sqlite3_vfs* VFSWrapper();
+
+} // namespace sql
+
+#endif // SQL_VFS_WRAPPER_H_
« 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