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

Unified Diff: sync/internal_api/public/sessions/sync_session_snapshot.h

Issue 11474036: Remove initial_sync_ended bits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Avoid spurious changes Created 8 years 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: sync/internal_api/public/sessions/sync_session_snapshot.h
diff --git a/sync/internal_api/public/sessions/sync_session_snapshot.h b/sync/internal_api/public/sessions/sync_session_snapshot.h
index 82524198c3e1f589183e2fd24c91b96a02670c0e..d13f03923813bce9f7397be899cf654c2f71e03f 100644
--- a/sync/internal_api/public/sessions/sync_session_snapshot.h
+++ b/sync/internal_api/public/sessions/sync_session_snapshot.h
@@ -31,8 +31,6 @@ class SyncSessionSnapshot {
SyncSessionSnapshot();
SyncSessionSnapshot(
const ModelNeutralState& model_neutral_state,
- bool is_share_usable,
Nicolas Zea 2012/12/10 22:50:38 why is is_share_usable being removed as well? (I'l
tim (not reviewing) 2012/12/10 23:05:36 It used to denote "initial sync ended for all data
- ModelTypeSet initial_sync_ended,
const ProgressMarkerMap& download_progress_markers,
bool is_silenced,
int num_encryption_conflicts,
@@ -56,8 +54,6 @@ class SyncSessionSnapshot {
return model_neutral_state_;
}
int64 num_server_changes_remaining() const;
- bool is_share_usable() const;
- ModelTypeSet initial_sync_ended() const;
const ProgressMarkerMap& download_progress_markers() const;
bool is_silenced() const;
int num_encryption_conflicts() const;
@@ -76,8 +72,6 @@ class SyncSessionSnapshot {
private:
ModelNeutralState model_neutral_state_;
- bool is_share_usable_;
- ModelTypeSet initial_sync_ended_;
ProgressMarkerMap download_progress_markers_;
bool is_silenced_;
int num_encryption_conflicts_;

Powered by Google App Engine
This is Rietveld 408576698