| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sync/sessions/sync_session_context.h" | 5 #include "components/sync/sessions_impl/sync_session_context.h" |
| 6 | 6 |
| 7 #include "sync/sessions/debug_info_getter.h" | 7 #include "components/sync/base/extensions_activity.h" |
| 8 #include "sync/util/extensions_activity.h" | 8 #include "components/sync/sessions_impl/debug_info_getter.h" |
| 9 | 9 |
| 10 namespace syncer { | 10 namespace syncer { |
| 11 namespace sessions { | 11 namespace sessions { |
| 12 | 12 |
| 13 SyncSessionContext::SyncSessionContext( | 13 SyncSessionContext::SyncSessionContext( |
| 14 ServerConnectionManager* connection_manager, | 14 ServerConnectionManager* connection_manager, |
| 15 syncable::Directory* directory, | 15 syncable::Directory* directory, |
| 16 ExtensionsActivity* extensions_activity, | 16 ExtensionsActivity* extensions_activity, |
| 17 const std::vector<SyncEngineEventListener*>& listeners, | 17 const std::vector<SyncEngineEventListener*>& listeners, |
| 18 DebugInfoGetter* debug_info_getter, | 18 DebugInfoGetter* debug_info_getter, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 32 server_enabled_pre_commit_update_avoidance_(false), | 32 server_enabled_pre_commit_update_avoidance_(false), |
| 33 client_enabled_pre_commit_update_avoidance_( | 33 client_enabled_pre_commit_update_avoidance_( |
| 34 client_enabled_pre_commit_update_avoidance), | 34 client_enabled_pre_commit_update_avoidance), |
| 35 cookie_jar_mismatch_(false), | 35 cookie_jar_mismatch_(false), |
| 36 cookie_jar_empty_(false) { | 36 cookie_jar_empty_(false) { |
| 37 std::vector<SyncEngineEventListener*>::const_iterator it; | 37 std::vector<SyncEngineEventListener*>::const_iterator it; |
| 38 for (it = listeners.begin(); it != listeners.end(); ++it) | 38 for (it = listeners.begin(); it != listeners.end(); ++it) |
| 39 listeners_.AddObserver(*it); | 39 listeners_.AddObserver(*it); |
| 40 } | 40 } |
| 41 | 41 |
| 42 SyncSessionContext::~SyncSessionContext() { | 42 SyncSessionContext::~SyncSessionContext() {} |
| 43 } | |
| 44 | 43 |
| 45 ModelTypeSet SyncSessionContext::GetEnabledTypes() const { | 44 ModelTypeSet SyncSessionContext::GetEnabledTypes() const { |
| 46 return model_type_registry_->GetEnabledTypes(); | 45 return model_type_registry_->GetEnabledTypes(); |
| 47 } | 46 } |
| 48 | 47 |
| 49 void SyncSessionContext::SetRoutingInfo( | 48 void SyncSessionContext::SetRoutingInfo( |
| 50 const ModelSafeRoutingInfo& routing_info) { | 49 const ModelSafeRoutingInfo& routing_info) { |
| 51 model_type_registry_->SetEnabledDirectoryTypes(routing_info); | 50 model_type_registry_->SetEnabledDirectoryTypes(routing_info); |
| 52 } | 51 } |
| 53 | 52 |
| 54 } // namespace sessions | 53 } // namespace sessions |
| 55 } // namespace syncer | 54 } // namespace syncer |
| OLD | NEW |