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

Unified Diff: sync/sessions/sync_session_context.h

Issue 10541079: [Sync] Remove CleanupDisabledTypes command and move purge logic into SyncManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test Created 8 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
« no previous file with comments | « sync/internal_api/syncapi_unittest.cc ('k') | sync/sync.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/sessions/sync_session_context.h
diff --git a/sync/sessions/sync_session_context.h b/sync/sessions/sync_session_context.h
index 3255b94740ae5f74eda0093d670b3fcca4d1c0da..55d45f42afa27064ba51470b2f38f80ff4a85c80 100644
--- a/sync/sessions/sync_session_context.h
+++ b/sync/sessions/sync_session_context.h
@@ -110,14 +110,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));
@@ -163,10 +155,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
« no previous file with comments | « sync/internal_api/syncapi_unittest.cc ('k') | sync/sync.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698