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/sync/glue/autofill_model_associator.h" | 5 #include "chrome/browser/sync/glue/autofill_model_associator.h" |
6 | 6 |
| 7 #include <functional> |
7 #include <vector> | 8 #include <vector> |
8 | 9 |
9 #include "base/task.h" | 10 #include "base/task.h" |
10 #include "base/time.h" | 11 #include "base/time.h" |
11 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
12 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
13 #include "chrome/browser/autofill/autofill_profile.h" | 14 #include "chrome/browser/autofill/autofill_profile.h" |
14 #include "chrome/browser/browser_thread.h" | 15 #include "chrome/browser/browser_thread.h" |
15 #include "chrome/browser/prefs/pref_service.h" | 16 #include "chrome/browser/prefs/pref_service.h" |
16 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
17 #include "chrome/browser/sync/engine/syncapi.h" | 18 #include "chrome/browser/sync/engine/syncapi.h" |
18 #include "chrome/browser/sync/glue/autofill_change_processor.h" | 19 #include "chrome/browser/sync/glue/autofill_change_processor.h" |
19 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" | 20 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" |
20 #include "chrome/browser/sync/glue/do_optimistic_refresh_task.h" | 21 #include "chrome/browser/sync/glue/do_optimistic_refresh_task.h" |
21 #include "chrome/browser/sync/profile_sync_service.h" | 22 #include "chrome/browser/sync/profile_sync_service.h" |
22 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" | 23 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" |
23 #include "chrome/browser/webdata/web_database.h" | 24 #include "chrome/browser/webdata/web_database.h" |
24 #include "chrome/common/guid.h" | 25 #include "chrome/common/guid.h" |
25 #include "chrome/common/pref_names.h" | |
26 #include "net/base/escape.h" | 26 #include "net/base/escape.h" |
27 | 27 |
28 using base::TimeTicks; | 28 using base::TimeTicks; |
29 | 29 |
30 namespace browser_sync { | 30 namespace browser_sync { |
31 | 31 |
32 const char kAutofillTag[] = "google_chrome_autofill"; | 32 const char kAutofillTag[] = "google_chrome_autofill"; |
33 const char kAutofillEntryNamespaceTag[] = "autofill_entry|"; | 33 const char kAutofillEntryNamespaceTag[] = "autofill_entry|"; |
34 | 34 |
35 struct AutofillModelAssociator::DataBundle { | 35 struct AutofillModelAssociator::DataBundle { |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
569 sync_service()->backend()->SetAutofillMigrationState(syncable::MIGRATED); | 569 sync_service()->backend()->SetAutofillMigrationState(syncable::MIGRATED); |
570 | 570 |
571 VLOG(1) << "[AUTOFILL MIGRATION]" | 571 VLOG(1) << "[AUTOFILL MIGRATION]" |
572 << "Current autofill migration state is migrated."; | 572 << "Current autofill migration state is migrated."; |
573 } | 573 } |
574 | 574 |
575 return false; | 575 return false; |
576 } | 576 } |
577 | 577 |
578 } // namespace browser_sync | 578 } // namespace browser_sync |
579 | |
OLD | NEW |