summaryrefslogtreecommitdiffstats
path: root/chrome/browser/diagnostics/diagnostics_model.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/diagnostics/diagnostics_model.cc')
-rw-r--r--chrome/browser/diagnostics/diagnostics_model.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_model.cc b/chrome/browser/diagnostics/diagnostics_model.cc
index 0fb53fc..b7a1bc3 100644
--- a/chrome/browser/diagnostics/diagnostics_model.cc
+++ b/chrome/browser/diagnostics/diagnostics_model.cc
@@ -14,6 +14,7 @@
#include "base/path_service.h"
#include "chrome/browser/diagnostics/diagnostics_test.h"
#include "chrome/browser/diagnostics/recon_diagnostics.h"
+#include "chrome/browser/diagnostics/sqlite_diagnostics.h"
#include "chrome/common/chrome_paths.h"
namespace {
@@ -86,6 +87,11 @@ class DiagnosticsModelWin : public DiagnosticsModelImpl {
tests_.push_back(MakeDictonaryDirTest());
tests_.push_back(MakeInspectorDirTest());
tests_.push_back(MakeDiskSpaceTest());
+ tests_.push_back(MakeSqliteWebDbTest());
+ tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteHistoryDbTest());
+ tests_.push_back(MakeSqliteArchivedHistoryDbTest());
+ tests_.push_back(MakeSqliteThumbnailsDbTest());
}
private:
@@ -102,6 +108,11 @@ class DiagnosticsModelMac : public DiagnosticsModelImpl {
tests_.push_back(MakeDictonaryDirTest());
tests_.push_back(MakeInspectorDirTest());
tests_.push_back(MakeDiskSpaceTest());
+ tests_.push_back(MakeSqliteWebDbTest());
+ tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteHistoryDbTest());
+ tests_.push_back(MakeSqliteArchivedHistoryDbTest());
+ tests_.push_back(MakeSqliteThumbnailsDbTest());
}
private:
@@ -118,6 +129,11 @@ class DiagnosticsModelPosix : public DiagnosticsModelImpl {
tests_.push_back(MakeDictonaryDirTest());
tests_.push_back(MakeInspectorDirTest());
tests_.push_back(MakeDiskSpaceTest());
+ tests_.push_back(MakeSqliteWebDbTest());
+ tests_.push_back(MakeSqliteCookiesDbTest());
+ tests_.push_back(MakeSqliteHistoryDbTest());
+ tests_.push_back(MakeSqliteArchivedHistoryDbTest());
+ tests_.push_back(MakeSqliteThumbnailsDbTest());
}
private: