diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-31 00:11:41 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-31 00:11:41 +0000 |
commit | 2cfcf5c0ef8dad0a87985e21a22d6eff8cc0b37a (patch) | |
tree | cf7f8debf92584ba058bee21f914a3db9bc36b55 /chrome/browser/diagnostics/diagnostics_model.cc | |
parent | 85ff70b6c85d318bb2326ef317237542a709436f (diff) | |
download | chromium_src-2cfcf5c0ef8dad0a87985e21a22d6eff8cc0b37a.zip chromium_src-2cfcf5c0ef8dad0a87985e21a22d6eff8cc0b37a.tar.gz chromium_src-2cfcf5c0ef8dad0a87985e21a22d6eff8cc0b37a.tar.bz2 |
Revert 43143 - Implement db corruption tests for diagnostic mode
Uses sqlite's pragma integrity_check
Tests the 5 main databases
BUG=27885
TEST=none
Review URL: http://codereview.chromium.org/1548005
TBR=cpu@chromium.org
Review URL: http://codereview.chromium.org/1539006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43152 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/diagnostics/diagnostics_model.cc')
-rw-r--r-- | chrome/browser/diagnostics/diagnostics_model.cc | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/chrome/browser/diagnostics/diagnostics_model.cc b/chrome/browser/diagnostics/diagnostics_model.cc index b7a1bc3..0fb53fc 100644 --- a/chrome/browser/diagnostics/diagnostics_model.cc +++ b/chrome/browser/diagnostics/diagnostics_model.cc @@ -14,7 +14,6 @@ #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 { @@ -87,11 +86,6 @@ 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: @@ -108,11 +102,6 @@ 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: @@ -129,11 +118,6 @@ 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: |