| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/internal_api/sync_rollback_manager_base.h" | 5 #include "sync/internal_api/sync_rollback_manager_base.h" |
| 6 | 6 |
| 7 #include "sync/internal_api/public/base/model_type.h" | 7 #include "sync/internal_api/public/base/model_type.h" |
| 8 #include "sync/internal_api/public/internal_components_factory.h" | 8 #include "sync/internal_api/public/internal_components_factory.h" |
| 9 #include "sync/internal_api/public/read_node.h" | 9 #include "sync/internal_api/public/read_node.h" |
| 10 #include "sync/internal_api/public/read_transaction.h" | 10 #include "sync/internal_api/public/read_transaction.h" |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 OnInitializationComplete( | 227 OnInitializationComplete( |
| 228 MakeWeakHandle(base::WeakPtr<JsBackend>()), | 228 MakeWeakHandle(base::WeakPtr<JsBackend>()), |
| 229 MakeWeakHandle(base::WeakPtr<DataTypeDebugInfoListener>()), | 229 MakeWeakHandle(base::WeakPtr<DataTypeDebugInfoListener>()), |
| 230 false, InitialSyncEndedTypes())); | 230 false, InitialSyncEndedTypes())); |
| 231 } | 231 } |
| 232 | 232 |
| 233 std::string SyncRollbackManagerBase::GetOwnerName() const { | 233 std::string SyncRollbackManagerBase::GetOwnerName() const { |
| 234 return ""; | 234 return ""; |
| 235 } | 235 } |
| 236 | 236 |
| 237 syncer::SyncCoreProxy* SyncRollbackManagerBase::GetSyncCoreProxy() { | 237 syncer::SyncContextProxy* SyncRollbackManagerBase::GetSyncContextProxy() { |
| 238 return NULL; | 238 return NULL; |
| 239 } | 239 } |
| 240 | 240 |
| 241 ScopedVector<syncer::ProtocolEvent> | 241 ScopedVector<syncer::ProtocolEvent> |
| 242 SyncRollbackManagerBase::GetBufferedProtocolEvents() { | 242 SyncRollbackManagerBase::GetBufferedProtocolEvents() { |
| 243 return ScopedVector<syncer::ProtocolEvent>().Pass(); | 243 return ScopedVector<syncer::ProtocolEvent>().Pass(); |
| 244 } | 244 } |
| 245 | 245 |
| 246 scoped_ptr<base::ListValue> SyncRollbackManagerBase::GetAllNodesForType( | 246 scoped_ptr<base::ListValue> SyncRollbackManagerBase::GetAllNodesForType( |
| 247 syncer::ModelType type) { | 247 syncer::ModelType type) { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 | 337 |
| 338 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver( | 338 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver( |
| 339 syncer::TypeDebugInfoObserver* observer) {} | 339 syncer::TypeDebugInfoObserver* observer) {} |
| 340 | 340 |
| 341 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver( | 341 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver( |
| 342 syncer::TypeDebugInfoObserver* observer) { return false; } | 342 syncer::TypeDebugInfoObserver* observer) { return false; } |
| 343 | 343 |
| 344 void SyncRollbackManagerBase::RequestEmitDebugInfo() {} | 344 void SyncRollbackManagerBase::RequestEmitDebugInfo() {} |
| 345 | 345 |
| 346 } // namespace syncer | 346 } // namespace syncer |
| OLD | NEW |