Index: chrome/browser/diagnostics/diagnostics_model.cc |
diff --git a/chrome/browser/diagnostics/diagnostics_model.cc b/chrome/browser/diagnostics/diagnostics_model.cc |
index 1216bf08c539297fd0fb63cc257a38af5d94cdd4..ff280652c3d18453bc89db5c771c8256b691fe3b 100644 |
--- a/chrome/browser/diagnostics/diagnostics_model.cc |
+++ b/chrome/browser/diagnostics/diagnostics_model.cc |
@@ -24,14 +24,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 = 19; |
+const int DiagnosticsModel::kDiagnosticsTestCount = 18; |
#elif defined(OS_MACOSX) |
-const int DiagnosticsModel::kDiagnosticsTestCount = 15; |
+const int DiagnosticsModel::kDiagnosticsTestCount = 14; |
#elif defined(OS_POSIX) |
#if defined(OS_CHROMEOS) |
-const int DiagnosticsModel::kDiagnosticsTestCount = 19; |
+const int DiagnosticsModel::kDiagnosticsTestCount = 18; |
#else |
-const int DiagnosticsModel::kDiagnosticsTestCount = 17; |
+const int DiagnosticsModel::kDiagnosticsTestCount = 16; |
#endif |
#endif |
@@ -166,7 +166,6 @@ class DiagnosticsModelWin : public DiagnosticsModelImpl { |
tests_.push_back(MakeSqliteHistoryDbTest()); |
tests_.push_back(MakeSqliteArchivedHistoryDbTest()); |
tests_.push_back(MakeSqliteThumbnailsDbTest()); |
- tests_.push_back(MakeSqliteAppCacheDbTest()); |
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest()); |
} |
@@ -191,7 +190,6 @@ class DiagnosticsModelMac : public DiagnosticsModelImpl { |
tests_.push_back(MakeSqliteHistoryDbTest()); |
tests_.push_back(MakeSqliteArchivedHistoryDbTest()); |
tests_.push_back(MakeSqliteThumbnailsDbTest()); |
- tests_.push_back(MakeSqliteAppCacheDbTest()); |
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest()); |
} |
@@ -218,7 +216,6 @@ class DiagnosticsModelPosix : public DiagnosticsModelImpl { |
tests_.push_back(MakeSqliteHistoryDbTest()); |
tests_.push_back(MakeSqliteArchivedHistoryDbTest()); |
tests_.push_back(MakeSqliteThumbnailsDbTest()); |
- tests_.push_back(MakeSqliteAppCacheDbTest()); |
tests_.push_back(MakeSqliteWebDatabaseTrackerDbTest()); |
#if defined(OS_CHROMEOS) |
tests_.push_back(MakeSqliteNssCertDbTest()); |