| Index: components/sync/engine_impl/update_applicator.h
|
| diff --git a/components/sync/engine_impl/update_applicator.h b/components/sync/engine_impl/update_applicator.h
|
| index e4afa3619459062712584f3a1034d7b95374713f..6fc19e4f885f75986cf47ee165e297c361693780 100644
|
| --- a/components/sync/engine_impl/update_applicator.h
|
| +++ b/components/sync/engine_impl/update_applicator.h
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
| //
|
| // An UpdateApplicator is used to iterate over a number of unapplied updates,
|
| -// applying them to the client using the given syncer session.
|
| +// applying them to the client using the given syncer cycle.
|
| //
|
| // UpdateApplicator might resemble an iterator, but it actually keeps retrying
|
| // failed updates until no remaining updates can be successfully applied.
|
| @@ -18,23 +18,17 @@
|
|
|
| #include "base/macros.h"
|
| #include "components/sync/engine/model_safe_worker.h"
|
| -#include "components/sync/sessions_impl/status_controller.h"
|
| #include "components/sync/syncable/syncable_id.h"
|
|
|
| namespace syncer {
|
|
|
| -namespace sessions {
|
| -class StatusController;
|
| -}
|
| +class Cryptographer;
|
|
|
| namespace syncable {
|
| class WriteTransaction;
|
| class Entry;
|
| }
|
|
|
| -class ConflictResolver;
|
| -class Cryptographer;
|
| -
|
| class UpdateApplicator {
|
| public:
|
| explicit UpdateApplicator(Cryptographer* cryptographer);
|
|
|