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

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

Issue 2038933002: Drop diagnostics reference to out-dated database. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Own a bunch of diagnostics histograms Created 4 years, 6 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: chrome/browser/diagnostics/diagnostics_model.cc
diff --git a/chrome/browser/diagnostics/diagnostics_model.cc b/chrome/browser/diagnostics/diagnostics_model.cc
index 177d8132c3f52f32af9b895f6480be8991d9a01b..4ad99e97cea38b732df754b14f758edbe43738f2 100644
--- a/chrome/browser/diagnostics/diagnostics_model.cc
+++ b/chrome/browser/diagnostics/diagnostics_model.cc
@@ -25,14 +25,14 @@ namespace diagnostics {
// This is the count of diagnostic tests on each platform. This should
// only be used by testing code.
#if defined(OS_WIN)
-const int DiagnosticsModel::kDiagnosticsTestCount = 17;
+const int DiagnosticsModel::kDiagnosticsTestCount = 18;
#elif defined(OS_MACOSX)
-const int DiagnosticsModel::kDiagnosticsTestCount = 13;
+const int DiagnosticsModel::kDiagnosticsTestCount = 14;
#elif defined(OS_POSIX)
#if defined(OS_CHROMEOS)
-const int DiagnosticsModel::kDiagnosticsTestCount = 17;
+const int DiagnosticsModel::kDiagnosticsTestCount = 18;
#else
-const int DiagnosticsModel::kDiagnosticsTestCount = 15;
+const int DiagnosticsModel::kDiagnosticsTestCount = 16;
#endif
#endif
@@ -164,8 +164,9 @@ class DiagnosticsModelWin : public DiagnosticsModelImpl {
tests_.push_back(MakeBookMarksTest());
tests_.push_back(MakeSqliteWebDataDbTest());
tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteFaviconsDbTest());
tests_.push_back(MakeSqliteHistoryDbTest());
- tests_.push_back(MakeSqliteThumbnailsDbTest());
+ tests_.push_back(MakeSqliteTopSitesDbTest());
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest());
}
@@ -187,8 +188,9 @@ class DiagnosticsModelMac : public DiagnosticsModelImpl {
tests_.push_back(MakeBookMarksTest());
tests_.push_back(MakeSqliteWebDataDbTest());
tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteFaviconsDbTest());
tests_.push_back(MakeSqliteHistoryDbTest());
- tests_.push_back(MakeSqliteThumbnailsDbTest());
+ tests_.push_back(MakeSqliteTopSitesDbTest());
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest());
}
@@ -212,8 +214,9 @@ class DiagnosticsModelPosix : public DiagnosticsModelImpl {
tests_.push_back(MakeBookMarksTest());
tests_.push_back(MakeSqliteWebDataDbTest());
tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteFaviconsDbTest());
tests_.push_back(MakeSqliteHistoryDbTest());
- tests_.push_back(MakeSqliteThumbnailsDbTest());
+ tests_.push_back(MakeSqliteTopSitesDbTest());
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest());
#if defined(OS_CHROMEOS)
tests_.push_back(MakeSqliteNssCertDbTest());

Powered by Google App Engine
This is Rietveld 408576698