| 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_PROFILE_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 #include <string> | 8 #include <string> |
| 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/personal_data_manager.h" | 12 #include "chrome/browser/autofill/personal_data_manager.h" |
| 13 #include "chrome/browser/sync/engine/syncapi.h" | |
| 14 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" | 13 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" |
| 15 #include "chrome/browser/sync/glue/change_processor.h" | 14 #include "chrome/browser/sync/glue/change_processor.h" |
| 15 #include "chrome/browser/sync/internal_api/sync_manager.h" |
| 16 #include "chrome/browser/sync/internal_api/write_node.h" |
| 17 #include "chrome/browser/sync/internal_api/write_transaction.h" |
| 16 #include "chrome/browser/sync/unrecoverable_error_handler.h" | 18 #include "chrome/browser/sync/unrecoverable_error_handler.h" |
| 17 #include "chrome/browser/webdata/autofill_change.h" | 19 #include "chrome/browser/webdata/autofill_change.h" |
| 18 #include "chrome/browser/webdata/web_database.h" | 20 #include "chrome/browser/webdata/web_database.h" |
| 19 #include "content/common/content_notification_types.h" | 21 #include "content/common/content_notification_types.h" |
| 20 #include "content/common/notification_observer.h" | 22 #include "content/common/notification_observer.h" |
| 21 #include "content/common/notification_registrar.h" | 23 #include "content/common/notification_registrar.h" |
| 22 #include "content/common/notification_service.h" | 24 #include "content/common/notification_service.h" |
| 23 | 25 |
| 24 namespace browser_sync { | 26 namespace browser_sync { |
| 25 | 27 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 bool observing_; | 101 bool observing_; |
| 100 | 102 |
| 101 WebDatabase* web_database_; | 103 WebDatabase* web_database_; |
| 102 PersonalDataManager* personal_data_; | 104 PersonalDataManager* personal_data_; |
| 103 NotificationRegistrar notification_registrar_; | 105 NotificationRegistrar notification_registrar_; |
| 104 }; | 106 }; |
| 105 | 107 |
| 106 } // namespace browser_sync | 108 } // namespace browser_sync |
| 107 | 109 |
| 108 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ | 110 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| OLD | NEW |