Index: sync/internal_api/public/sessions/sync_session_snapshot.h |
=================================================================== |
--- sync/internal_api/public/sessions/sync_session_snapshot.h (revision 164641) |
+++ sync/internal_api/public/sessions/sync_session_snapshot.h (working copy) |
@@ -43,7 +43,8 @@ |
const SyncSourceInfo& source, |
bool notifications_enabled, |
size_t num_entries, |
- base::Time sync_start_time); |
+ base::Time sync_start_time, |
+ bool retry_scheduled); |
~SyncSessionSnapshot(); |
// Caller takes ownership of the returned dictionary. |
@@ -68,6 +69,7 @@ |
bool notifications_enabled() const; |
size_t num_entries() const; |
base::Time sync_start_time() const; |
+ bool retry_scheduled() const; |
// Set iff this snapshot was not built using the default constructor. |
bool is_initialized() const; |
@@ -87,6 +89,7 @@ |
bool notifications_enabled_; |
size_t num_entries_; |
base::Time sync_start_time_; |
+ bool retry_scheduled_; |
bool is_initialized_; |
}; |