Fix app list and overflow icon drawing problems
[chromium-blink-merge.git] / sync / engine / nudge_source.h
blob366f6d14247de042d59aa72fe57b1521ebe66400
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_
8 namespace syncer {
10 enum NudgeSource {
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).
15 NUDGE_SOURCE_LOCAL,
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);
24 } // namespace syncer
26 #endif // SYNC_ENGINE_NUDGE_SOURCE_H_