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/webdata/web_database.h" | 5 #include "chrome/browser/webdata/web_database.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "app/l10n_util.h" | 12 #include "app/l10n_util.h" |
13 #include "app/sql/statement.h" | 13 #include "app/sql/statement.h" |
14 #include "app/sql/transaction.h" | 14 #include "app/sql/transaction.h" |
15 #include "base/string_number_conversions.h" | 15 #include "base/string_number_conversions.h" |
16 #include "base/string_split.h" | 16 #include "base/string_split.h" |
17 #include "base/string_util.h" | 17 #include "base/string_util.h" |
18 #include "base/tuple.h" | 18 #include "base/tuple.h" |
19 #include "base/utf_string_conversions.h" | 19 #include "base/utf_string_conversions.h" |
20 #include "chrome/browser/autofill/autofill_profile.h" | 20 #include "chrome/browser/autofill/autofill_profile.h" |
21 #include "chrome/browser/autofill/autofill_type.h" | 21 #include "chrome/browser/autofill/autofill_type.h" |
22 #include "chrome/browser/autofill/credit_card.h" | 22 #include "chrome/browser/autofill/credit_card.h" |
23 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" | 23 #include "chrome/browser/diagnostics/sqlite_diagnostics.h" |
24 #include "chrome/browser/guid.h" | |
25 #include "chrome/browser/history/history_database.h" | 24 #include "chrome/browser/history/history_database.h" |
26 #include "chrome/browser/password_manager/encryptor.h" | 25 #include "chrome/browser/password_manager/encryptor.h" |
27 #include "chrome/browser/search_engines/template_url.h" | 26 #include "chrome/browser/search_engines/template_url.h" |
28 #include "chrome/browser/webdata/autofill_change.h" | 27 #include "chrome/browser/webdata/autofill_change.h" |
| 28 #include "chrome/common/guid.h" |
29 #include "chrome/common/notification_service.h" | 29 #include "chrome/common/notification_service.h" |
30 #include "gfx/codec/png_codec.h" | 30 #include "gfx/codec/png_codec.h" |
31 #include "third_party/skia/include/core/SkBitmap.h" | 31 #include "third_party/skia/include/core/SkBitmap.h" |
32 #include "webkit/glue/form_field.h" | 32 #include "webkit/glue/form_field.h" |
33 #include "webkit/glue/password_form.h" | 33 #include "webkit/glue/password_form.h" |
34 | 34 |
35 // Encryptor is now in place for Windows and Mac. The Linux implementation | 35 // Encryptor is now in place for Windows and Mac. The Linux implementation |
36 // currently obfuscates only. Mac Encryptor implementation can block the | 36 // currently obfuscates only. Mac Encryptor implementation can block the |
37 // active thread while presenting UI to the user. See |encryptor_mac.mm| for | 37 // active thread while presenting UI to the user. See |encryptor_mac.mm| for |
38 // details. | 38 // details. |
(...skipping 2538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2577 | 2577 |
2578 // Add successive versions here. Each should set the version number and | 2578 // Add successive versions here. Each should set the version number and |
2579 // compatible version number as appropriate, then fall through to the next | 2579 // compatible version number as appropriate, then fall through to the next |
2580 // case. | 2580 // case. |
2581 | 2581 |
2582 case kCurrentVersionNumber: | 2582 case kCurrentVersionNumber: |
2583 // No migration needed. | 2583 // No migration needed. |
2584 return sql::INIT_OK; | 2584 return sql::INIT_OK; |
2585 } | 2585 } |
2586 } | 2586 } |
OLD | NEW |