| 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/read_node.h" | 8 #include "sync/internal_api/public/read_node.h" |
| 9 #include "sync/internal_api/public/read_transaction.h" | 9 #include "sync/internal_api/public/read_transaction.h" |
| 10 #include "sync/internal_api/public/write_transaction.h" | 10 #include "sync/internal_api/public/write_transaction.h" |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 syncer::TypeDebugInfoObserver* observer) {} | 317 syncer::TypeDebugInfoObserver* observer) {} |
| 318 | 318 |
| 319 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver( | 319 void SyncRollbackManagerBase::UnregisterDirectoryTypeDebugInfoObserver( |
| 320 syncer::TypeDebugInfoObserver* observer) {} | 320 syncer::TypeDebugInfoObserver* observer) {} |
| 321 | 321 |
| 322 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver( | 322 bool SyncRollbackManagerBase::HasDirectoryTypeDebugInfoObserver( |
| 323 syncer::TypeDebugInfoObserver* observer) { return false; } | 323 syncer::TypeDebugInfoObserver* observer) { return false; } |
| 324 | 324 |
| 325 void SyncRollbackManagerBase::RequestEmitDebugInfo() {} | 325 void SyncRollbackManagerBase::RequestEmitDebugInfo() {} |
| 326 | 326 |
| 327 void SyncRollbackManagerBase::ClearServerData( |
| 328 const ClearServerDataCallback& callback) {} |
| 329 |
| 327 } // namespace syncer | 330 } // namespace syncer |
| OLD | NEW |