1 // Copyright (c) 2012 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_NUDGE_SOURCE_H_
6 #define SYNC_ENGINE_NUDGE_SOURCE_H_
11 NUDGE_SOURCE_UNKNOWN
= 0,
12 // We received an invalidation message and are nudging to check for updates.
13 NUDGE_SOURCE_NOTIFICATION
,
14 // A local change occurred (e.g. bookmark moved).
16 // A previous sync cycle did not fully complete (e.g. HTTP error).
17 NUDGE_SOURCE_CONTINUATION
,
18 // A local event is triggering an optimistic datatype refresh.
19 NUDGE_SOURCE_LOCAL_REFRESH
,
22 const char* GetNudgeSourceString(NudgeSource nudge_source
);
26 #endif // SYNC_ENGINE_NUDGE_SOURCE_H_