| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" | 5 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" |
| 6 | 6 |
| 7 #include "base/base_paths.h" | 7 #include "base/base_paths.h" |
| 8 #include "base/file_util.h" | 8 #include "base/files/file_util.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/singleton.h" | 11 #include "base/memory/singleton.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/path_service.h" | 14 #include "base/path_service.h" |
| 15 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 16 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
| 17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 18 #include "chrome/common/chrome_constants.h" | 18 #include "chrome/common/chrome_constants.h" |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 base::FilePath(chrome::kThumbnailsFilename)); | 246 base::FilePath(chrome::kThumbnailsFilename)); |
| 247 } | 247 } |
| 248 | 248 |
| 249 DiagnosticsTest* MakeSqliteWebDataDbTest() { | 249 DiagnosticsTest* MakeSqliteWebDataDbTest() { |
| 250 return new SqliteIntegrityTest(SqliteIntegrityTest::CRITICAL, | 250 return new SqliteIntegrityTest(SqliteIntegrityTest::CRITICAL, |
| 251 DIAGNOSTICS_SQLITE_INTEGRITY_WEB_DATA_TEST, | 251 DIAGNOSTICS_SQLITE_INTEGRITY_WEB_DATA_TEST, |
| 252 base::FilePath(kWebDataFilename)); | 252 base::FilePath(kWebDataFilename)); |
| 253 } | 253 } |
| 254 | 254 |
| 255 } // namespace diagnostics | 255 } // namespace diagnostics |
| OLD | NEW |