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

Unified Diff: sql/diagnostic_error_delegate.h

Issue 9159020: Create a class to represent a DOM Storage Database. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Address review comments, streamline tests and allow them to operate on in-memory databases. Created 8 years, 10 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 | « no previous file | sql/statement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/diagnostic_error_delegate.h
diff --git a/sql/diagnostic_error_delegate.h b/sql/diagnostic_error_delegate.h
index 6a09fc0ef4c05da883c9b7b5a6e3ce6688be2eae..1b6c8059621bc8d2f4eeaebb23a391cd782005a4 100644
--- a/sql/diagnostic_error_delegate.h
+++ b/sql/diagnostic_error_delegate.h
@@ -28,10 +28,10 @@ class DiagnosticErrorDelegate : public ErrorDelegate {
virtual int OnError(int error, Connection* connection,
Statement* stmt) {
- NOTREACHED() << "sqlite error " << error
+/* NOTREACHED() << "sqlite error " << error
<< ", errno " << connection->GetLastErrno()
<< ": " << connection->GetErrorMessage();
- RecordErrorInHistogram(error);
+*/ RecordErrorInHistogram(error);
benm (inactive) 2012/02/06 18:19:41 d'oh, didn't mean to leave this in. This NOTREACHE
return error;
}
« no previous file with comments | « no previous file | sql/statement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698