diff options
author | nshkrob@chromium.org <nshkrob@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 21:46:09 +0000 |
---|---|---|
committer | nshkrob@chromium.org <nshkrob@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-30 21:46:09 +0000 |
commit | f33b82f2e0be4b3c739f3e51f34b680080e0150e (patch) | |
tree | 8cb4ad562fdef2e2b95809b06be9af697b61d410 /app/sql/diagnostic_error_delegate.h | |
parent | 6472ca20fbcf08b42dfb8cc20a5066910f038404 (diff) | |
download | chromium_src-f33b82f2e0be4b3c739f3e51f34b680080e0150e.zip chromium_src-f33b82f2e0be4b3c739f3e51f34b680080e0150e.tar.gz chromium_src-f33b82f2e0be4b3c739f3e51f34b680080e0150e.tar.bz2 |
Rename the Thumbnails database file to Favicons.
The database will no longer store the thumbnails - TopSites is storing it's own thumbnails.
BUG=None
TEST=ThumbnailDatabaseTest
Review URL: http://codereview.chromium.org/2842034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51294 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/sql/diagnostic_error_delegate.h')
-rw-r--r-- | app/sql/diagnostic_error_delegate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/sql/diagnostic_error_delegate.h b/app/sql/diagnostic_error_delegate.h index e62bba2..0b0cc65 100644 --- a/app/sql/diagnostic_error_delegate.h +++ b/app/sql/diagnostic_error_delegate.h @@ -26,7 +26,8 @@ class DiagnosticErrorDelegate : public ErrorDelegate { virtual int OnError(int error, Connection* connection, Statement* stmt) { - NOTREACHED() << "sqlite error " << error; + NOTREACHED() << "sqlite error " << error << ": " << + connection->GetErrorMessage(); RecordErrorInHistogram(error); return error; } |