| Index: app/sql/connection.h
|
| diff --git a/app/sql/connection.h b/app/sql/connection.h
|
| index 0bd28caab835aeb1755c8ff7ef9b35be7bec8990..ae4e7c870f90c250f85031eda401d2b635d24692 100644
|
| --- a/app/sql/connection.h
|
| +++ b/app/sql/connection.h
|
| @@ -77,6 +77,8 @@ class Connection;
|
| // corruption, low-level IO errors or locking violations.
|
| class ErrorDelegate : public base::RefCounted<ErrorDelegate> {
|
| public:
|
| + ErrorDelegate();
|
| +
|
| // |error| is an sqlite result code as seen in sqlite\preprocessed\sqlite3.h
|
| // |connection| is db connection where the error happened and |stmt| is
|
| // our best guess at the statement that triggered the error. Do not store
|
| @@ -93,7 +95,7 @@ class ErrorDelegate : public base::RefCounted<ErrorDelegate> {
|
| protected:
|
| friend class base::RefCounted<ErrorDelegate>;
|
|
|
| - virtual ~ErrorDelegate() {}
|
| + virtual ~ErrorDelegate();
|
| };
|
|
|
| class Connection {
|
|
|