1 // Copyright 2014 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.
5 #ifndef SYNC_ENGINE_SYNC_CYCLE_EVENT_H_
6 #define SYNC_ENGINE_SYNC_CYCLE_EVENT_H_
8 #include "sync/base/sync_export.h"
9 #include "sync/internal_api/public/sessions/sync_session_snapshot.h"
13 struct SyncProtocolError
;
15 struct SYNC_EXPORT_PRIVATE SyncCycleEvent
{
17 ////////////////////////////////////////////////////////////////
18 // Sent on entry of Syncer state machine
21 // Sent any time progress is made during a sync cycle.
24 // We have reached the SYNCER_END state in the main sync loop.
28 explicit SyncCycleEvent(EventCause cause
);
31 EventCause what_happened
;
33 // The last session used for syncing.
34 sessions::SyncSessionSnapshot snapshot
;
39 #endif // SYNC_ENGINE_SYNC_CYCLE_EVENT_H_