OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SYNC_ENGINE_NUDGE_SOURCE_H_ | 5 #ifndef SYNC_ENGINE_NUDGE_SOURCE_H_ |
6 #define SYNC_ENGINE_NUDGE_SOURCE_H_ | 6 #define SYNC_ENGINE_NUDGE_SOURCE_H_ |
7 #pragma once | |
8 | 7 |
9 namespace syncer { | 8 namespace syncer { |
10 | 9 |
11 enum NudgeSource { | 10 enum NudgeSource { |
12 NUDGE_SOURCE_UNKNOWN = 0, | 11 NUDGE_SOURCE_UNKNOWN = 0, |
13 // We received an invalidation message and are nudging to check for updates. | 12 // We received an invalidation message and are nudging to check for updates. |
14 NUDGE_SOURCE_NOTIFICATION, | 13 NUDGE_SOURCE_NOTIFICATION, |
15 // A local change occurred (e.g. bookmark moved). | 14 // A local change occurred (e.g. bookmark moved). |
16 NUDGE_SOURCE_LOCAL, | 15 NUDGE_SOURCE_LOCAL, |
17 // A previous sync cycle did not fully complete (e.g. HTTP error). | 16 // A previous sync cycle did not fully complete (e.g. HTTP error). |
18 NUDGE_SOURCE_CONTINUATION, | 17 NUDGE_SOURCE_CONTINUATION, |
19 // A local event is triggering an optimistic datatype refresh. | 18 // A local event is triggering an optimistic datatype refresh. |
20 NUDGE_SOURCE_LOCAL_REFRESH, | 19 NUDGE_SOURCE_LOCAL_REFRESH, |
21 }; | 20 }; |
22 | 21 |
23 const char* GetNudgeSourceString(NudgeSource nudge_source); | 22 const char* GetNudgeSourceString(NudgeSource nudge_source); |
24 | 23 |
25 } // namespace syncer | 24 } // namespace syncer |
26 | 25 |
27 #endif // SYNC_ENGINE_NUDGE_SOURCE_H_ | 26 #endif // SYNC_ENGINE_NUDGE_SOURCE_H_ |
OLD | NEW |