diff options
Diffstat (limited to 'chrome/browser/diagnostics/sqlite_diagnostics.cc')
-rw-r--r-- | chrome/browser/diagnostics/sqlite_diagnostics.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/diagnostics/sqlite_diagnostics.cc b/chrome/browser/diagnostics/sqlite_diagnostics.cc index 0c38718..3f98caa 100644 --- a/chrome/browser/diagnostics/sqlite_diagnostics.cc +++ b/chrome/browser/diagnostics/sqlite_diagnostics.cc @@ -44,7 +44,7 @@ class SqliteIntegrityTest : public DiagnosticsTest { const base::FilePath& db_path) : DiagnosticsTest(id), flags_(flags), db_path_(db_path) {} - virtual bool RecoveryImpl(DiagnosticsModel::Observer* observer) override { + bool RecoveryImpl(DiagnosticsModel::Observer* observer) override { int outcome_code = GetOutcomeCode(); if (flags_ & REMOVE_IF_CORRUPT) { switch (outcome_code) { @@ -69,7 +69,7 @@ class SqliteIntegrityTest : public DiagnosticsTest { return true; } - virtual bool ExecuteImpl(DiagnosticsModel::Observer* observer) override { + bool ExecuteImpl(DiagnosticsModel::Observer* observer) override { // If we're given an absolute path, use it. If not, then assume it's under // the profile directory. base::FilePath path; |