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

Unified Diff: webkit/appcache/appcache_database.cc

Issue 14976003: Histogram versions and extended error codes for SQLite databases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: excess include. Created 7 years, 7 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
Index: webkit/appcache/appcache_database.cc
diff --git a/webkit/appcache/appcache_database.cc b/webkit/appcache/appcache_database.cc
index 67767eb9980d03be081e64b5459bed41b8ae8663..b037e3712364326a97cddd2d598d89e9d8087b54 100644
--- a/webkit/appcache/appcache_database.cc
+++ b/webkit/appcache/appcache_database.cc
@@ -1001,7 +1001,7 @@ bool AppCacheDatabase::LazyOpen(bool create_if_needed) {
db_.reset(new sql::Connection);
meta_table_.reset(new sql::MetaTable);
- db_->set_error_histogram_name("Sqlite.AppCache.Error");
+ db_->set_histogram_prefix("Sqlite.AppCache");
bool opened = false;
if (use_in_memory_db) {

Powered by Google App Engine
This is Rietveld 408576698