summaryrefslogtreecommitdiffstats
path: root/sync/sessions/sync_session_context.h
diff options
context:
space:
mode:
authorzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-30 22:24:17 +0000
committerzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-30 22:24:17 +0000
commitcb0a47621b0a852febe394058483c0f838bc607f (patch)
tree1cab96389aa969cdf4689126592bf7a81cae43fb /sync/sessions/sync_session_context.h
parentd8083825721205299dc094e69ef54849803e7f50 (diff)
downloadchromium_src-cb0a47621b0a852febe394058483c0f838bc607f.zip
chromium_src-cb0a47621b0a852febe394058483c0f838bc607f.tar.gz
chromium_src-cb0a47621b0a852febe394058483c0f838bc607f.tar.bz2
Reland 148792
Relanding after rebasing. [Sync] Remove CleanupDisabledTypes command and move purge logic into SyncManager." Original codereview at http://codereview.chromium.org/10541079/ BUG=131433, 90868 TBR=tim@chromium.org Review URL: https://chromiumcodereview.appspot.com/10829086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149052 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync/sessions/sync_session_context.h')
-rw-r--r--sync/sessions/sync_session_context.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/sync/sessions/sync_session_context.h b/sync/sessions/sync_session_context.h
index cd26d5e..400a6aa 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