| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/history/history_database.h" | 5 #include "chrome/browser/history/history_database.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include "app/sql/transaction.h" | 10 |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "base/rand_util.h" | 14 #include "base/rand_util.h" |
| 15 #include "base/string_util.h" | 15 #include "base/string_util.h" |
| 16 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" | 16 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" |
| 17 #include "sql/transaction.h" |
| 17 | 18 |
| 18 #if defined(OS_MACOSX) | 19 #if defined(OS_MACOSX) |
| 19 #include "base/mac/mac_util.h" | 20 #include "base/mac/mac_util.h" |
| 20 #endif | 21 #endif |
| 21 | 22 |
| 22 namespace history { | 23 namespace history { |
| 23 | 24 |
| 24 namespace { | 25 namespace { |
| 25 | 26 |
| 26 // Current version number. We write databases at the "current" version number, | 27 // Current version number. We write databases at the "current" version number, |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);"); | 335 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);"); |
| 335 | 336 |
| 336 // Erase all the full text index files. These will take a while to update and | 337 // Erase all the full text index files. These will take a while to update and |
| 337 // are less important, so we just blow them away. Same with the archived | 338 // are less important, so we just blow them away. Same with the archived |
| 338 // database. | 339 // database. |
| 339 needs_version_17_migration_ = true; | 340 needs_version_17_migration_ = true; |
| 340 } | 341 } |
| 341 #endif | 342 #endif |
| 342 | 343 |
| 343 } // namespace history | 344 } // namespace history |
| OLD | NEW |