Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6358)

Unified Diff: chrome/browser/sync/sessions/session_state.h

Issue 7477004: Simulate transient error and verify exponential backoff. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing a typo. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/sessions/session_state.h
diff --git a/chrome/browser/sync/sessions/session_state.h b/chrome/browser/sync/sessions/session_state.h
index 85d683b69f4192ff7cd8c4476bdca72104c6d9b5..490f7c0611aef990a1a01a163dbf52e5a0538122 100644
--- a/chrome/browser/sync/sessions/session_state.h
+++ b/chrome/browser/sync/sessions/session_state.h
@@ -130,7 +130,8 @@ struct SyncSessionSnapshot {
int num_conflicting_updates,
bool did_commit_items,
const SyncSourceInfo& source,
- size_t num_entries);
+ size_t num_entries,
+ base::Time sync_start_time);
~SyncSessionSnapshot();
// Caller takes ownership of the returned dictionary.
@@ -152,6 +153,7 @@ struct SyncSessionSnapshot {
const bool did_commit_items;
const SyncSourceInfo source;
const size_t num_entries;
+ base::Time sync_start_time;
};
// Tracks progress of conflicts and their resolution using conflict sets.

Powered by Google App Engine
This is Rietveld 408576698