Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Side by Side Diff: chrome/browser/history/history_database.cc

Issue 213433002: Migrate old Shortcuts DB data to conform to new type values (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Work around Windows Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/history/shortcuts_database.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/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 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/strings/string_util.h" 15 #include "base/strings/string_util.h"
16 #include "base/time/time.h" 16 #include "base/time/time.h"
17 #include "sql/transaction.h" 17 #include "sql/transaction.h"
18 18
19 #if defined(OS_MACOSX) 19 #if defined(OS_MACOSX)
20 #include "base/mac/mac_util.h" 20 #include "base/mac/mac_util.h"
21 #endif 21 #endif
22 22
23 namespace history { 23 namespace history {
24 24
25 namespace { 25 namespace {
26 26
27 // Current version number. We write databases at the "current" version number, 27 // Current version number. We write databases at the "current" version number,
28 // but any previous version that can read the "compatible" one can make do with 28 // but any previous version that can read the "compatible" one can make do with
29 // or database without *too* many bad effects. 29 // our database without *too* many bad effects.
30 const int kCurrentVersionNumber = 28; 30 const int kCurrentVersionNumber = 28;
31 const int kCompatibleVersionNumber = 16; 31 const int kCompatibleVersionNumber = 16;
32 const char kEarlyExpirationThresholdKey[] = "early_expiration_threshold"; 32 const char kEarlyExpirationThresholdKey[] = "early_expiration_threshold";
33 33
34 } // namespace 34 } // namespace
35 35
36 HistoryDatabase::HistoryDatabase() 36 HistoryDatabase::HistoryDatabase()
37 : needs_version_17_migration_(false) { 37 : needs_version_17_migration_(false) {
38 } 38 }
39 39
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);")); 457 "WHERE id IN (SELECT id FROM segment_usage WHERE time_slot > 0);"));
458 458
459 // Erase all the full text index files. These will take a while to update and 459 // Erase all the full text index files. These will take a while to update and
460 // are less important, so we just blow them away. Same with the archived 460 // are less important, so we just blow them away. Same with the archived
461 // database. 461 // database.
462 needs_version_17_migration_ = true; 462 needs_version_17_migration_ = true;
463 } 463 }
464 #endif 464 #endif
465 465
466 } // namespace history 466 } // namespace history
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/history/shortcuts_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698