| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include "app/sql/transaction.h" |
| 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 "chrome/common/chrome_switches.h" | |
| 18 | 17 |
| 19 #if defined(OS_MACOSX) | 18 #if defined(OS_MACOSX) |
| 20 #include "base/mac/mac_util.h" | 19 #include "base/mac/mac_util.h" |
| 21 #endif | 20 #endif |
| 22 | 21 |
| 23 namespace history { | 22 namespace history { |
| 24 | 23 |
| 25 namespace { | 24 namespace { |
| 26 | 25 |
| 27 // Current version number. We write databases at the "current" version number, | 26 // Current version number. We write databases at the "current" version number, |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);"); | 340 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);"); |
| 342 | 341 |
| 343 // Erase all the full text index files. These will take a while to update and | 342 // Erase all the full text index files. These will take a while to update and |
| 344 // are less important, so we just blow them away. Same with the archived | 343 // are less important, so we just blow them away. Same with the archived |
| 345 // database. | 344 // database. |
| 346 needs_version_17_migration_ = true; | 345 needs_version_17_migration_ = true; |
| 347 } | 346 } |
| 348 #endif | 347 #endif |
| 349 | 348 |
| 350 } // namespace history | 349 } // namespace history |
| OLD | NEW |