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

Unified Diff: chrome/browser/diagnostics/sqlite_diagnostics.cc

Issue 10872032: Revert 152946 - Replace HistoryQuickProvider protobuf-based caching with an SQLite-based database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | « chrome/browser/diagnostics/sqlite_diagnostics.h ('k') | chrome/browser/history/history.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/diagnostics/sqlite_diagnostics.cc
===================================================================
--- chrome/browser/diagnostics/sqlite_diagnostics.cc (revision 152962)
+++ chrome/browser/diagnostics/sqlite_diagnostics.cc (working copy)
@@ -99,8 +99,7 @@
"Sqlite.History.Error",
"Sqlite.Thumbnail.Error",
"Sqlite.Text.Error",
- "Sqlite.Web.Error",
- "Sqlite.HQPCache.Error"
+ "Sqlite.Web.Error"
};
return kHistogramNames[unique];
}
@@ -128,10 +127,6 @@
return new sql::DiagnosticErrorDelegate<HistogramUniquifier<4> >();
}
-sql::ErrorDelegate* GetErrorHandlerForHQPCacheDb() {
- return new sql::DiagnosticErrorDelegate<HistogramUniquifier<5> >();
-}
-
DiagnosticTest* MakeSqliteWebDbTest() {
return new SqliteIntegrityTest(true, ASCIIToUTF16("Web DB"),
FilePath(chrome::kWebDataFilename));
@@ -157,12 +152,6 @@
FilePath(chrome::kThumbnailsFilename));
}
-DiagnosticTest* MakeSqliteHQPCacheDbTest() {
- return new SqliteIntegrityTest(false,
- ASCIIToUTF16("History Provider Cache DB"),
- FilePath(chrome::kHQPCacheDBFilename));
-}
-
DiagnosticTest* MakeSqliteAppCacheDbTest() {
FilePath appcache_dir(content::kAppCacheDirname);
FilePath appcache_db = appcache_dir.Append(appcache::kAppCacheDatabaseName);
« no previous file with comments | « chrome/browser/diagnostics/sqlite_diagnostics.h ('k') | chrome/browser/history/history.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698