| 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_SESSIONS_MODEL_NEUTRAL_STATE_H | 5 #ifndef SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H |
| 6 #define SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H | 6 #define SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "sync/internal_api/public/util/syncer_error.h" | 9 #include "sync/internal_api/public/util/syncer_error.h" |
| 10 #include "sync/protocol/sync.pb.h" | 10 #include "sync/protocol/sync.pb.h" |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 // True indicates debug info has been sent once this session. | 63 // True indicates debug info has been sent once this session. |
| 64 bool debug_info_sent; | 64 bool debug_info_sent; |
| 65 | 65 |
| 66 // Number of changes remaining, according to the server. | 66 // Number of changes remaining, according to the server. |
| 67 // Take it as an estimate unless it's value is zero, in which case there | 67 // Take it as an estimate unless it's value is zero, in which case there |
| 68 // really is nothing more to download. | 68 // really is nothing more to download. |
| 69 int64 num_server_changes_remaining; | 69 int64 num_server_changes_remaining; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 bool HasSyncerError(const ModelNeutralState& state); |
| 73 |
| 72 } // namespace sessions | 74 } // namespace sessions |
| 73 } // namespace syncer | 75 } // namespace syncer |
| 74 | 76 |
| 75 #endif // SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H_ | 77 #endif // SYNC_SESSIONS_MODEL_NEUTRAL_STATE_H_ |
| OLD | NEW |