Index: sync/sessions/sync_session_context.h |
diff --git a/sync/sessions/sync_session_context.h b/sync/sessions/sync_session_context.h |
index cd26d5e2cc71bd118324583a2d4112416234dfad..400a6aaf0bbd05c8783f496601753daad7d0b8d5 100644 |
--- a/sync/sessions/sync_session_context.h |
+++ b/sync/sessions/sync_session_context.h |
@@ -109,14 +109,6 @@ class SyncSessionContext { |
} |
int32 max_commit_batch_size() const { return max_commit_batch_size_; } |
- const ModelSafeRoutingInfo& previous_session_routing_info() const { |
- return previous_session_routing_info_; |
- } |
- |
- void set_previous_session_routing_info(const ModelSafeRoutingInfo& info) { |
- previous_session_routing_info_ = info; |
- } |
- |
void NotifyListeners(const SyncEngineEvent& event) { |
FOR_EACH_OBSERVER(SyncEngineEventListener, listeners_, |
OnSyncEngineEvent(event)); |
@@ -162,10 +154,6 @@ class SyncSessionContext { |
// The server limits the number of items a client can commit in one batch. |
int max_commit_batch_size_; |
- // Some routing info history to help us clean up types that get disabled |
- // by the user. |
- ModelSafeRoutingInfo previous_session_routing_info_; |
- |
ThrottledDataTypeTracker* throttled_data_type_tracker_; |
// We use this to get debug info to send to the server for debugging |