OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| 5 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| 6 #pragma once |
| 7 #include <vector> |
| 8 |
| 9 #include "chrome/browser/autofill/autofill_profile.h" |
| 10 #include "chrome/browser/autofill/personal_data_manager.h" |
| 11 #include "chrome/browser/sync/engine/syncapi.h" |
| 12 #include "chrome/browser/sync/glue/autofill_profile_model_associator.h" |
| 13 #include "chrome/browser/sync/glue/change_processor.h" |
| 14 #include "chrome/browser/sync/unrecoverable_error_handler.h" |
| 15 #include "chrome/browser/webdata/autofill_change.h" |
| 16 #include "chrome/browser/webdata/web_database.h" |
| 17 #include "chrome/common/notification_observer.h" |
| 18 #include "chrome/common/notification_registrar.h" |
| 19 #include "chrome/common/notification_service.h" |
| 20 #include "chrome/common/notification_type.h" |
| 21 |
| 22 namespace browser_sync { |
| 23 |
| 24 class AutofillProfileChangeProcessor : public ChangeProcessor, |
| 25 public NotificationObserver { |
| 26 public: |
| 27 AutofillProfileChangeProcessor( |
| 28 AutofillProfileModelAssociator *model_associator, |
| 29 WebDatabase* web_database, |
| 30 PersonalDataManager* personal_data_manager, |
| 31 UnrecoverableErrorHandler* error_handler); |
| 32 |
| 33 virtual ~AutofillProfileChangeProcessor() {} |
| 34 |
| 35 // Virtual methods from changeprocessor class |
| 36 virtual void ApplyChangesFromSyncModel( |
| 37 const sync_api::BaseTransaction *write_trans, |
| 38 const sync_api::SyncManager::ChangeRecord* changes, |
| 39 int change_count); |
| 40 |
| 41 virtual void CommitChangesFromSyncModel(); |
| 42 |
| 43 // Virtual method implemented for the observer class. |
| 44 virtual void Observe(NotificationType type, |
| 45 const NotificationSource& source, |
| 46 const NotificationDetails& details); |
| 47 |
| 48 |
| 49 static void WriteAutofillProfile(const AutoFillProfile& profile, |
| 50 sync_api::WriteNode* node); |
| 51 |
| 52 // This ensures that startobsrving gets called after stopobserving even |
| 53 // if there is an early return in the function. |
| 54 class ScopedObserver { |
| 55 public: |
| 56 explicit ScopedObserver(AutofillProfileChangeProcessor* processor); |
| 57 ~ScopedObserver(); |
| 58 |
| 59 private: |
| 60 ScopedObserver() {} |
| 61 AutofillProfileChangeProcessor* processor_; |
| 62 }; |
| 63 |
| 64 protected: |
| 65 // Protected methods from ChangeProcessor. |
| 66 virtual void StartImpl(Profile* profile) {} |
| 67 virtual void StopImpl() {} |
| 68 |
| 69 struct AutofillProfileChangeRecord { |
| 70 sync_api::SyncManager::ChangeRecord::Action action_; |
| 71 int64 id_; |
| 72 sync_pb::AutofillProfileSpecifics profile_specifics_; |
| 73 AutofillProfileChangeRecord( |
| 74 sync_api::SyncManager::ChangeRecord::Action action, |
| 75 int64 id, |
| 76 const sync_pb::AutofillProfileSpecifics profile_specifics) |
| 77 : action_(action), |
| 78 id_(id), |
| 79 profile_specifics_(profile_specifics) {} |
| 80 }; |
| 81 std::vector<AutofillProfileChangeRecord> autofill_changes_; |
| 82 |
| 83 virtual void AddAutofillProfileSyncNode(sync_api::WriteTransaction* trans, |
| 84 sync_api::BaseNode& autofill_profile_root, |
| 85 const AutoFillProfile& profile); |
| 86 |
| 87 void ActOnChange(AutofillProfileChangeGUID* change, |
| 88 sync_api::WriteTransaction* trans, |
| 89 sync_api::ReadNode& autofill_root); |
| 90 |
| 91 private: |
| 92 |
| 93 void StartObserving(); |
| 94 void StopObserving(); |
| 95 |
| 96 void PostOptimisticRefreshTask(); |
| 97 |
| 98 void ApplyAutofillProfileChange( |
| 99 sync_api::SyncManager::ChangeRecord::Action action, |
| 100 const sync_pb::AutofillProfileSpecifics& profile, |
| 101 int64 sync_id); |
| 102 |
| 103 void RemoveSyncNode( |
| 104 const std::string& guid, sync_api::WriteTransaction *trans); |
| 105 |
| 106 AutofillProfileModelAssociator* model_associator_; |
| 107 bool observing_; |
| 108 |
| 109 WebDatabase* web_database_; |
| 110 PersonalDataManager* personal_data_; |
| 111 NotificationRegistrar notification_registrar_; |
| 112 }; |
| 113 |
| 114 } // namespace browser_sync |
| 115 |
| 116 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_CHANGE_PROCESSOR_H_ |
| 117 |
| 118 |
OLD | NEW |