Chromium Code Reviews| Index: sql/connection.h |
| diff --git a/sql/connection.h b/sql/connection.h |
| index 12e7041c9fd2fa10f7bec8c04b182c14c5d302ad..288625e5569f2bba7cbe63bb93c09b6e2dbbbdfa 100644 |
| --- a/sql/connection.h |
| +++ b/sql/connection.h |
| @@ -20,6 +20,7 @@ |
| #include "base/memory/ref_counted.h" |
| #include "base/threading/thread_restrictions.h" |
| #include "base/time/time.h" |
| +#include "sql/db_diagnostic_map.h" |
|
michaeln
2016/07/09 03:00:38
probably overkill to add a new file for using a st
Scott Hess - ex-Googler
2016/07/10 05:16:52
Honestly, I'm not sure I see why this is in sql/ o
afakhry
2016/07/11 16:47:46
The reasons behind my decision to put it there wer
Scott Hess - ex-Googler
2016/07/13 01:18:46
sql/init_status.h is also really client code which
afakhry
2016/07/13 19:57:59
Nothing other than the reason I stated above. I'm
|
| #include "sql/sql_export.h" |
| struct sqlite3; |
| @@ -239,6 +240,8 @@ class SQL_EXPORT Connection { |
| // without error and results in a single "ok" value. |
| bool QuickIntegrityCheck() WARN_UNUSED_RESULT; |
| + sql::DatabaseDiagnosticMap GetDiagnosticMap(); |
| + |
| // Initialization ------------------------------------------------------------ |
| // Initializes the SQL connection for the given file, returning true if the |