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_change_processor.h" | 5 #include "chrome/browser/sync/glue/autofill_change_processor.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/browser/autofill/personal_data_manager.h" | 12 #include "chrome/browser/autofill/personal_data_manager.h" |
13 #include "chrome/browser/prefs/pref_service.h" | 13 #include "chrome/browser/prefs/pref_service.h" |
14 #include "chrome/browser/profiles/profile.h" | 14 #include "chrome/browser/profiles/profile.h" |
15 #include "chrome/browser/sync/glue/autofill_model_associator.h" | 15 #include "chrome/browser/sync/glue/autofill_model_associator.h" |
16 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" | 16 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" |
17 #include "chrome/browser/sync/glue/do_optimistic_refresh_task.h" | 17 #include "chrome/browser/sync/glue/do_optimistic_refresh_task.h" |
18 #include "chrome/browser/sync/profile_sync_service.h" | 18 #include "chrome/browser/sync/profile_sync_service.h" |
19 #include "chrome/browser/webdata/autofill_change.h" | 19 #include "chrome/browser/webdata/autofill_change.h" |
20 #include "chrome/browser/webdata/web_data_service.h" | 20 #include "chrome/browser/webdata/web_data_service.h" |
21 #include "chrome/browser/webdata/web_database.h" | 21 #include "chrome/browser/webdata/web_database.h" |
22 #include "chrome/common/guid.h" | 22 #include "chrome/common/guid.h" |
23 #include "chrome/common/notification_service.h" | 23 #include "chrome/common/notification_service.h" |
24 #include "chrome/common/pref_names.h" | |
25 | 24 |
26 namespace browser_sync { | 25 namespace browser_sync { |
27 | 26 |
28 struct AutofillChangeProcessor::AutofillChangeRecord { | 27 struct AutofillChangeProcessor::AutofillChangeRecord { |
29 sync_api::SyncManager::ChangeRecord::Action action_; | 28 sync_api::SyncManager::ChangeRecord::Action action_; |
30 int64 id_; | 29 int64 id_; |
31 sync_pb::AutofillSpecifics autofill_; | 30 sync_pb::AutofillSpecifics autofill_; |
32 AutofillChangeRecord(sync_api::SyncManager::ChangeRecord::Action action, | 31 AutofillChangeRecord(sync_api::SyncManager::ChangeRecord::Action action, |
33 int64 id, const sync_pb::AutofillSpecifics& autofill) | 32 int64 id, const sync_pb::AutofillSpecifics& autofill) |
34 : action_(action), | 33 : action_(action), |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 } | 434 } |
436 node->SetAutofillSpecifics(autofill); | 435 node->SetAutofillSpecifics(autofill); |
437 } | 436 } |
438 | 437 |
439 bool AutofillChangeProcessor::HasNotMigratedYet( | 438 bool AutofillChangeProcessor::HasNotMigratedYet( |
440 const sync_api::BaseTransaction* trans) { | 439 const sync_api::BaseTransaction* trans) { |
441 return model_associator_->HasNotMigratedYet(trans); | 440 return model_associator_->HasNotMigratedYet(trans); |
442 } | 441 } |
443 | 442 |
444 } // namespace browser_sync | 443 } // namespace browser_sync |
OLD | NEW |