Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "chrome/browser/autofill/autofill_profile.h" | 11 #include "chrome/browser/autofill/autofill_profile.h" |
| 12 #include "chrome/browser/autofill/credit_card.h" | 12 #include "chrome/browser/autofill/credit_card.h" |
| 13 #include "chrome/browser/autofill/personal_data_manager.h" | 13 #include "chrome/browser/autofill/personal_data_manager.h" |
| 14 #include "chrome/browser/sync/engine/syncapi.h" | |
| 15 #include "chrome/browser/sync/glue/change_processor.h" | 14 #include "chrome/browser/sync/glue/change_processor.h" |
| 16 #include "chrome/browser/sync/glue/sync_backend_host.h" | 15 #include "chrome/browser/sync/glue/sync_backend_host.h" |
| 16 #include "chrome/browser/sync/internal_api/read_node.h" | |
| 17 #include "chrome/browser/sync/internal_api/sync_manager.h" | |
| 18 #include "chrome/browser/sync/internal_api/write_node.h" | |
| 19 #include "chrome/browser/sync/internal_api/write_transaction.h" | |
|
Nicolas Zea
2011/08/16 19:39:07
can forward declare nodes/transactions here instea
rlarocque
2011/08/16 22:19:19
Fixed here and in many other glue/*.h files. Let
| |
| 17 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" | 20 #include "chrome/browser/sync/protocol/autofill_specifics.pb.h" |
| 18 #include "chrome/browser/webdata/web_data_service.h" | 21 #include "chrome/browser/webdata/web_data_service.h" |
| 19 #include "content/common/notification_observer.h" | 22 #include "content/common/notification_observer.h" |
| 20 #include "content/common/notification_registrar.h" | 23 #include "content/common/notification_registrar.h" |
| 21 | 24 |
| 22 class AutofillCreditCardChange; | 25 class AutofillCreditCardChange; |
| 23 class AutofillEntry; | 26 class AutofillEntry; |
| 24 class AutofillProfileChange; | 27 class AutofillProfileChange; |
| 25 class PersonalDataManager; | 28 class PersonalDataManager; |
| 26 class WebDatabase; | 29 class WebDatabase; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 130 // in CommitChangesFromSyncModel. | 133 // in CommitChangesFromSyncModel. |
| 131 struct AutofillChangeRecord; | 134 struct AutofillChangeRecord; |
| 132 std::vector<AutofillChangeRecord> autofill_changes_; | 135 std::vector<AutofillChangeRecord> autofill_changes_; |
| 133 | 136 |
| 134 DISALLOW_COPY_AND_ASSIGN(AutofillChangeProcessor); | 137 DISALLOW_COPY_AND_ASSIGN(AutofillChangeProcessor); |
| 135 }; | 138 }; |
| 136 | 139 |
| 137 } // namespace browser_sync | 140 } // namespace browser_sync |
| 138 | 141 |
| 139 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ | 142 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_CHANGE_PROCESSOR_H_ |
| OLD | NEW |